* libc/include/sys/types.h: Don't define dev_t when compiling for

Cygwin.
This commit is contained in:
Corinna Vinschen 2002-06-03 17:48:06 +00:00
parent b3c2973142
commit cc890e8952
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-06-03 Corinna Vinschen <corinna@vinschen.de>
* libc/include/sys/types.h: Don't define dev_t when compiling for
Cygwin.
2002-05-31 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/Makefile.am: Add sig.c and sigaction.c. Also

View File

@ -125,8 +125,10 @@ typedef int32_t register_t;
/* device numbers are 32-bit major and and 32-bit minor */
typedef unsigned long long dev_t;
#else
#ifndef __CYGWIN__
typedef short dev_t;
#endif
#endif
#ifndef __CYGWIN__ /* which defines these types in it's own types.h. */
typedef long off_t;