diff options
author | Christopher Faylor <me@cgf.cx> | 2003-03-08 04:57:41 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-03-08 04:57:41 +0000 |
commit | 01d615435c88d73c50ea0818544633a20c6db232 (patch) | |
tree | c5a1cc663c7d50ce33a6cbbb09e1565c5a4c024f /newlib/libc/include | |
parent | 762520f3bc4d160d2af658f5dd59dfd09d76bc7f (diff) | |
download | cygnal-01d615435c88d73c50ea0818544633a20c6db232.tar.gz cygnal-01d615435c88d73c50ea0818544633a20c6db232.tar.bz2 cygnal-01d615435c88d73c50ea0818544633a20c6db232.zip |
* libc/include/sys/unistd.h: Guard getopt.h call to force only declaration of
getopt and avoid getopt_long declaration.
* libc/sys/cygwin/include/unistd.h: Remove.
Diffstat (limited to 'newlib/libc/include')
-rw-r--r-- | newlib/libc/include/sys/unistd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/include/sys/unistd.h b/newlib/libc/include/sys/unistd.h index 270be89aa..8879ee67d 100644 --- a/newlib/libc/include/sys/unistd.h +++ b/newlib/libc/include/sys/unistd.h @@ -126,7 +126,9 @@ int _EXFUN(vhangup, (void )); _READ_WRITE_RETURN_TYPE _EXFUN(write, (int __fd, const void *__buf, size_t __nbyte )); #ifdef __CYGWIN__ +# define __UNISTD_GETOPT__ # include <getopt.h> +# undef __UNISTD_GETOPT__ #else extern char *optarg; /* getopt(3) external variables */ extern int optind, opterr, optopt; |