* libc/include/sys/types.h: Don't define key_t for Cygwin.
This commit is contained in:
parent
aee7085346
commit
d1b5e65ba3
|
@ -1,3 +1,7 @@
|
||||||
|
2003-05-11 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* libc/include/sys/types.h: Don't define key_t for Cygwin.
|
||||||
|
|
||||||
2003-05-10 Christopher Faylor <cgf@redhat.com>
|
2003-05-10 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* libc/sys/cygwin/sys/dirent.h (struct dirent): Accommodate (slightly)
|
* libc/sys/cygwin/sys/dirent.h (struct dirent): Accommodate (slightly)
|
||||||
|
|
|
@ -164,7 +164,9 @@ typedef unsigned short gid_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef int pid_t;
|
typedef int pid_t;
|
||||||
|
#ifndef __CYGWIN__
|
||||||
typedef long key_t;
|
typedef long key_t;
|
||||||
|
#endif
|
||||||
typedef _ssize_t ssize_t;
|
typedef _ssize_t ssize_t;
|
||||||
|
|
||||||
#ifndef __CYGWIN__
|
#ifndef __CYGWIN__
|
||||||
|
|
Loading…
Reference in New Issue