]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/llvm/tools/lldb/tools/driver/GetOptWrapper.cpp
MFC r258054: Update LLDB to upstream r194122 snapshot
[FreeBSD/stable/10.git] / contrib / llvm / tools / lldb / tools / driver / GetOptWrapper.cpp
1 //===-- GetOptWrapper.cpp ---------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 // this file is only relevant for Visual C++
11 #if defined( _MSC_VER )
12
13 #include "GetOptWrapper.h"
14
15 /*
16
17 // already defined in lldbHostCommon.lib due to 'getopt.inc'
18
19 extern int
20 getopt_long_only
21 (
22     int                  ___argc,
23     char *const         *___argv,
24     const char          *__shortopts,
25     const struct option *__longopts,
26     int                 *__longind
27 )
28 {
29     return -1;
30 }
31 */
32
33 #endif