* libc/sys/cygwin/include/unistd.h: New file, wrapping sys/unistd.h

and getopt.h.
This commit is contained in:
Corinna Vinschen 2001-09-05 15:56:01 +00:00
parent 37c23731c7
commit 233823ba36
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2001-09-05 Corinna Vinschen <corinna@vinschen.de>
* libc/sys/cygwin/include/unistd.h: New file, wrapping sys/unistd.h
and getopt.h.
2001-09-04 Jason Merrill <jason_merrill@redhat.com>
* libc/sys/h8300hms/crt0.S: Support ELF initialization.

View File

@ -0,0 +1,9 @@
/* unistd.h for Cygwin. */
#ifndef _UNISTD_H_
#define _UNISTD_H_
# include <sys/unistd.h>
# include <getopt.h>
#endif /* _UNISTD_H_ */