diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-05-13 09:19:15 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-05-13 09:19:15 +0000 |
commit | 837e070f314f6b8b9e64ec9fb09dd0e0bf6226e9 (patch) | |
tree | aaf6a56cd542a05fb2fbe88d381e91c951c74933 /newlib/libc/locale/ldpart.c | |
parent | 878e4ecbe8ae63355c83bed46976c9a7533622ec (diff) | |
download | cygnal-837e070f314f6b8b9e64ec9fb09dd0e0bf6226e9.tar.gz cygnal-837e070f314f6b8b9e64ec9fb09dd0e0bf6226e9.tar.bz2 cygnal-837e070f314f6b8b9e64ec9fb09dd0e0bf6226e9.zip |
* libc/locale/ldpart.c (__part_load_locale): Substitute
__CYGWIN_USE_BIG_TYPES__ by __USE_INTERNAL_STAT64.
* libc/search/hash.c (__hash_open): Ditto.
(init_hash): Ditto.
* libc/stdio/fseek.c (fseek): Ditto.
* libc/stdio/makebuf.c (__smakebuf): Ditto.
* libc/stdio/mktemp.c (_gettemp): Ditto.
Diffstat (limited to 'newlib/libc/locale/ldpart.c')
-rw-r--r-- | newlib/libc/locale/ldpart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/locale/ldpart.c b/newlib/libc/locale/ldpart.c index bdeea87f9..a284b9db2 100644 --- a/newlib/libc/locale/ldpart.c +++ b/newlib/libc/locale/ldpart.c @@ -98,7 +98,7 @@ __part_load_locale(const char *name, fd = open(filename, O_RDONLY); if (fd < 0) goto no_locale; -#ifdef __CYGWIN_USE_BIG_TYPES__ +#ifdef __USE_INTERNAL_STAT64 if (fstat64(fd, &st) != 0) #else if (fstat(fd, &st) != 0) |