Merge branch 'master' of git://git.ucc.asn.au/tpg/acess2
[tpg/acess2.git] / Usermode / Libraries / libposix.so_src / getopt.c
1 /*
2  * Acess2 POSIX Emulation Layer
3  * - By John Hodge (thePowersGang)
4  *
5  * getopt.c
6  * - getopt() command line parsing code
7  */
8 #include <getopt.h>
9
10 // === GLOBALS ===
11 char*   optarg;
12  int    opterr;
13  int    optind;
14  int    optopt;
15
16 // === CODE ===
17 int getopt(int argc, char * const argv[], const char *optstring)
18 {
19         return -1;
20 }
21

UCC git Repository :: git.ucc.asn.au