diff options
author | Christopher Faylor <me@cgf.cx> | 2003-07-25 16:06:01 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-07-25 16:06:01 +0000 |
commit | 035367578f7afc08160014c1ab11eeb627a88f31 (patch) | |
tree | c502865e201051b5b9b6900196111aad9c0bd0fd /newlib/libc/include | |
parent | 206ac174730f7f3495ce271aaff4bd912ca396a5 (diff) | |
download | cygnal-035367578f7afc08160014c1ab11eeb627a88f31.tar.gz cygnal-035367578f7afc08160014c1ab11eeb627a88f31.tar.bz2 cygnal-035367578f7afc08160014c1ab11eeb627a88f31.zip |
* libc/stdio64/fdopen64.c: New file.
* libc/stdio64/Makefile.am (LIB_OBJS): Add fdopen64.o
* libc/stdio64/Makefile.in: Regenerate.
* libc/include/stdio.h (fdopen64): Define.
* libc/include/stdio.h (_fdopen64_r): Ditto.
Diffstat (limited to 'newlib/libc/include')
-rw-r--r-- | newlib/libc/include/stdio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/include/stdio.h b/newlib/libc/include/stdio.h index a82cd7639..5f22dfc1b 100644 --- a/newlib/libc/include/stdio.h +++ b/newlib/libc/include/stdio.h @@ -309,6 +309,7 @@ ssize_t _EXFUN(__getline, (char **, size_t *, FILE *)); #ifdef __LARGE64_FILES #ifndef __CYGWIN__ +FILE * _EXFUN(fdopen64, (int, const char *)); FILE * _EXFUN(fopen64, (const char *, const char *)); _off64_t _EXFUN(ftello64, (FILE *)); _off64_t _EXFUN(fseeko64, (FILE *, _off64_t, int)); @@ -316,6 +317,7 @@ int _EXFUN(fgetpos64, (FILE *, _fpos64_t *)); int _EXFUN(fsetpos64, (FILE *, const _fpos64_t *)); FILE * _EXFUN(tmpfile64, (void)); +FILE * _EXFUN(_fdopen64_r, (struct _reent *, int, const char *)); FILE * _EXFUN(_fopen64_r, (struct _reent *,const char *, const char *)); _off64_t _EXFUN(_ftello64_r, (struct _reent *, FILE *)); _off64_t _EXFUN(_fseeko64_r, (struct _reent *, FILE *, _off64_t, int)); |