* libc/include/sys/unistd.h: Under cygwin, just include getopt.h rather than
defining getopt directly.
This commit is contained in:
parent
6d48dd20ba
commit
5c581ecaf6
|
@ -1,3 +1,8 @@
|
||||||
|
2002-12-28 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* libc/include/sys/unistd.h: Under cygwin, just include getopt.h rather
|
||||||
|
than defining getopt directly.
|
||||||
|
|
||||||
2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
|
2002-12-20 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* NEWS: Update with 1.11.0 info.
|
* NEWS: Update with 1.11.0 info.
|
||||||
|
|
|
@ -120,10 +120,14 @@ int _EXFUN(unlink, (const char *__path ));
|
||||||
int _EXFUN(vhangup, (void ));
|
int _EXFUN(vhangup, (void ));
|
||||||
_READ_WRITE_RETURN_TYPE _EXFUN(write, (int __fd, const void *__buf, size_t __nbyte ));
|
_READ_WRITE_RETURN_TYPE _EXFUN(write, (int __fd, const void *__buf, size_t __nbyte ));
|
||||||
|
|
||||||
|
#ifdef __CYGWIN__
|
||||||
|
# include <getopt.h>
|
||||||
|
#else
|
||||||
extern char *optarg; /* getopt(3) external variables */
|
extern char *optarg; /* getopt(3) external variables */
|
||||||
extern int optind, opterr, optopt;
|
extern int optind, opterr, optopt;
|
||||||
int getopt(int, char * const [], const char *);
|
int getopt(int, char * const [], const char *);
|
||||||
extern int optreset; /* getopt(3) external variable */
|
extern int optreset; /* getopt(3) external variable */
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef _POSIX_SOURCE
|
#ifndef _POSIX_SOURCE
|
||||||
pid_t _EXFUN(vfork, (void ));
|
pid_t _EXFUN(vfork, (void ));
|
||||||
|
|
Loading…
Reference in New Issue