mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-23 07:27:21 +08:00
5582abd2c7
* libc/include/stdio.h: Change definition of fpos_t to fulfill Cygwin 64bit file access requirements. Drop definition of f*64() functions when compiled for Cygwin. * libc/include/sys/config.h: Define __LARGE64_FILES for Cygwin. * libc/reent/lseek64r.c: Use _off64_t instead of off64_t. * libc/stdio64/local64.h: Use _fpos64_t instead of fpos64_t.
14 lines
370 B
C
14 lines
370 B
C
/*
|
|
* Information local to this implementation of stdio64,
|
|
* in particular, macros and private variables.
|
|
*/
|
|
|
|
#include "local.h"
|
|
|
|
#ifdef __LARGE64_FILES
|
|
extern _fpos64_t _EXFUN(__sseek64,(void *, _fpos64_t, int));
|
|
extern _fpos64_t _EXFUN(__sseek64_error,(void *, _fpos64_t, int));
|
|
extern _READ_WRITE_RETURN_TYPE _EXFUN(__swrite64,(void *, char const *, int));
|
|
#endif
|
|
|