* 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.
This commit is contained in:
Corinna Vinschen
2003-05-13 09:19:15 +00:00
parent 878e4ecbe8
commit 837e070f31
6 changed files with 19 additions and 9 deletions

View File

@ -47,7 +47,7 @@ __smakebuf (fp)
fp->_bf._size = 1;
return;
}
#ifdef __CYGWIN_USE_BIG_TYPES__
#ifdef __USE_INTERNAL_STAT64
if (fp->_file < 0 || _fstat64_r (fp->_data, fp->_file, &st) < 0)
#else
if (fp->_file < 0 || _fstat_r (fp->_data, fp->_file, &st) < 0)