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/stdio/fseek.c | |
parent | 878e4ecbe8ae63355c83bed46976c9a7533622ec (diff) | |
download | newlib-837e070f314f6b8b9e64ec9fb09dd0e0bf6226e9.zip newlib-837e070f314f6b8b9e64ec9fb09dd0e0bf6226e9.tar.gz newlib-837e070f314f6b8b9e64ec9fb09dd0e0bf6226e9.tar.bz2 |
* 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/stdio/fseek.c')
-rw-r--r-- | newlib/libc/stdio/fseek.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/fseek.c b/newlib/libc/stdio/fseek.c index f37393c..4cd3e8c 100644 --- a/newlib/libc/stdio/fseek.c +++ b/newlib/libc/stdio/fseek.c @@ -198,7 +198,7 @@ fseek (fp, offset, whence) { if (seekfn != __sseek || fp->_file < 0 -#ifdef __CYGWIN_USE_BIG_TYPES__ +#ifdef __USE_INTERNAL_STAT64 || _fstat64_r (ptr, fp->_file, &st) #else || _fstat_r (ptr, fp->_file, &st) @@ -225,7 +225,7 @@ fseek (fp, offset, whence) target = offset; else { -#ifdef __CYGWIN_USE_BIG_TYPES__ +#ifdef __USE_INTERNAL_STAT64 if (_fstat64_r (ptr, fp->_file, &st)) #else if (_fstat_r (ptr, fp->_file, &st)) |