OSDN Git Service

More stuff. Down to only 43 missing functions before BusyBox will
[uclinux-h8/uClibc.git] / include / getopt.h
1 /* Copyright (C) 1996 Robert de Bath <rdebath@cix.compulink.co.uk>
2  * This file is part of the Linux-8086 C library and is distributed
3  * under the GNU Library General Public License.
4  */
5
6 #ifndef __GETOPT_H
7 #define __GETOPT_H
8
9 #include <features.h>
10
11 extern char *optarg;
12 extern int optind;
13 extern int opterr;
14 extern int optopt;
15
16 extern int getopt __P((int argc, char *const *argv, const char *shortopts));
17
18 #endif /* __GETOPT_H */