From f3b39c459b21309195f8a49c85395618563b2f6b Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Sat, 9 Feb 2002 20:40:37 +0000 Subject: * libc/include/grp.h: Include Cygwin specific header. * libc/include/sys/stat.h: Ditto. Don't define `struct stat' when compiling for Cygwin. * libc/include/sys/types.h: Don't define off_t, uid_t and gid_t when compiling for Cygwin. --- newlib/libc/include/sys/stat.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'newlib/libc/include/sys/stat.h') diff --git a/newlib/libc/include/sys/stat.h b/newlib/libc/include/sys/stat.h index bca437707..3ef2291c8 100644 --- a/newlib/libc/include/sys/stat.h +++ b/newlib/libc/include/sys/stat.h @@ -22,6 +22,9 @@ extern "C" { sizes of any of the basic types change (short, int, long) [via a compile time option]. */ +#ifdef __CYGWIN__ +#include +#else struct stat { dev_t st_dev; @@ -49,6 +52,7 @@ struct stat long st_spare4[2]; #endif }; +#endif #define _IFMT 0170000 /* type of file */ #define _IFDIR 0040000 /* directory */ -- cgit v1.2.3