diff options
author | ache <ache@FreeBSD.org> | 2004-02-23 04:51:07 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2004-02-23 04:51:07 +0000 |
commit | 8dfb22f60719278d1bfaa2353676b42190f7ee02 (patch) | |
tree | 9bcb7c2cf45bed4ba98d6246164b1d62aa596095 /include | |
parent | 8371e71458dcaa2126be0b30ce531d99670fc3d4 (diff) | |
download | FreeBSD-src-8dfb22f60719278d1bfaa2353676b42190f7ee02.zip FreeBSD-src-8dfb22f60719278d1bfaa2353676b42190f7ee02.tar.gz |
Add optreset to getopt.h too since NetBSD getopt_long() (but not GNU one)
use it too.
Diffstat (limited to 'include')
-rw-r--r-- | include/getopt.h | 6 | ||||
-rw-r--r-- | include/unistd.h | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/include/getopt.h b/include/getopt.h index c29ad42..39b514e 100644 --- a/include/getopt.h +++ b/include/getopt.h @@ -72,7 +72,11 @@ int getopt(int, char * const [], const char *); extern char *optarg; /* getopt(3) external variables */ extern int optind, opterr, optopt; -#endif /* _GETOPT_DECLARED */ +#endif +#ifndef _OPTRESET_DECLARED +#define _OPTRESET_DECLARED +extern int optreset; /* getopt(3) external variable */ +#endif __END_DECLS #endif /* !_GETOPT_H_ */ diff --git a/include/unistd.h b/include/unistd.h index 8901f93..0331308 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -542,7 +542,10 @@ int undelete(const char *); int unwhiteout(const char *); void *valloc(size_t); /* obsoleted by malloc() */ +#ifndef _OPTRESET_DECLARED +#define _OPTRESET_DECLARED extern int optreset; /* getopt(3) external variable */ +#endif #endif /* __BSD_VISIBLE */ __END_DECLS |