diff options
author | Eric Blake <eblake@redhat.com> | 2007-05-01 23:03:36 +0000 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2007-05-01 23:03:36 +0000 |
commit | b4f095585f1e139cba8d2e078c807e384b3e102d (patch) | |
tree | e7ee261d556586898030b9ac5252c6a2ab3d5c1d /newlib/libc/stdio64/local64.h | |
parent | 2babeb3d94cb8a507ca12b46252995b453600290 (diff) | |
download | cygnal-b4f095585f1e139cba8d2e078c807e384b3e102d.tar.gz cygnal-b4f095585f1e139cba8d2e078c807e384b3e102d.tar.bz2 cygnal-b4f095585f1e139cba8d2e078c807e384b3e102d.zip |
* libc/stdio64/local64.h: Delete, move contents to...
* libc/stdio/local.h: ...here.
* libc/stdio64/fdopen64.c: Update includes.
* libc/stdio64/fopen64.c: Likewise.
* libc/stdio64/freopen64.c: Likewise.
* libc/stdio64/fseeko64.c: Likewise.
* libc/stdio64/ftello64.c: Likewise.
* libc/stdio/findfp.c (std) [__LARGE64_FILES]: Open stdin, stdout,
and stderr with 64-bit offset.
* libc/stdio/fseek.c (_fseek_r): Avoid compile warning.
* libc/stdio/makebuf.c (__smakebuf_r): Likewise.
* libc/stdio/mktemp.c (_gettemp): Likewise.
Diffstat (limited to 'newlib/libc/stdio64/local64.h')
-rw-r--r-- | newlib/libc/stdio64/local64.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/newlib/libc/stdio64/local64.h b/newlib/libc/stdio64/local64.h deleted file mode 100644 index b86c95d03..000000000 --- a/newlib/libc/stdio64/local64.h +++ /dev/null @@ -1,16 +0,0 @@ -/* - * 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_r,(struct _reent *, 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)); -extern _READ_WRITE_RETURN_TYPE _EXFUN(__swrite64_r,(struct _reent *, void *, - char const *, int)); -#endif - |