* added compilers lcc and bcc (linux86)
[mascara-docs.git] / compilers / linux86-0.16.17 / libc / include / getopt.h
blob0d71ff6bd90d3ff7a34ff664a2cfa111fc5e2ff9
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 */
6 #ifndef __GETOPT_H
7 #define __GETOPT_H
9 #include <features.h>
11 extern char *optarg;
12 extern int opterr;
13 extern int optind;
15 extern int getopt __P((int argc, char *const *argv, const char *shortopts));
17 #endif /* __GETOPT_H */