OSDN Git Service

Initial revision
[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 opterr;
13 extern int optind;
14
15 extern int getopt __P((int argc, char *const *argv, const char *shortopts));
16
17 #endif /* __GETOPT_H */