diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2013-04-23 09:42:25 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2013-04-23 09:42:25 +0000 |
commit | 1875ee55d31d3673059373c8f9837bf98f93c713 (patch) | |
tree | 5b6e27ca6f7db52e5d041972710d7215e0bba2ff /newlib/libc/include/sys/stat.h | |
parent | bca6ce4282faeccaa0e380858b0a067dbe01f137 (diff) | |
download | cygnal-1875ee55d31d3673059373c8f9837bf98f93c713.tar.gz cygnal-1875ee55d31d3673059373c8f9837bf98f93c713.tar.bz2 cygnal-1875ee55d31d3673059373c8f9837bf98f93c713.zip |
Port newlib to x86_64-pc-cygwin.
* libc/include/sys/features.h: Redefine compilation environment
definitions for Cygwin to cover 64 bit Cygwin.
* libc/ctype/ctype_.c (_ctype_): Fix definition for 64 bit Cygwin.
* libc/include/machine/setjmp.h: Change definition of _JBLEN to allow
different values for 32 bit and 64 bit Cygwin.
* libc/include/reent.h (stat64): Define as stat under Cygwin, instead
of as __stat64. Undef stat64 if not building Newlib.
* libc/include/sys/stat.h (stat64): Define as stat under Cygwin.
Diffstat (limited to 'newlib/libc/include/sys/stat.h')
-rw-r--r-- | newlib/libc/include/sys/stat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/include/sys/stat.h b/newlib/libc/include/sys/stat.h index fa2036dd3..937bcacd2 100644 --- a/newlib/libc/include/sys/stat.h +++ b/newlib/libc/include/sys/stat.h @@ -19,7 +19,7 @@ extern "C" { #ifdef __CYGWIN__ #include <cygwin/stat.h> #ifdef _COMPILING_NEWLIB -#define stat64 __stat64 +#define stat64 stat #endif #else struct stat |