diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-07-22 23:53:50 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-07-22 23:53:50 +0000 |
commit | f5f27f07787e822e773e14b1dced1a01cbe28050 (patch) | |
tree | 1fd3a655aaf7929ab718631dc948faec9ea948bb /newlib/libc/include/stdio.h | |
parent | d541ba3ec0fd2de71ed3f9f2962189a4e6bde297 (diff) | |
download | cygnal-f5f27f07787e822e773e14b1dced1a01cbe28050.tar.gz cygnal-f5f27f07787e822e773e14b1dced1a01cbe28050.tar.bz2 cygnal-f5f27f07787e822e773e14b1dced1a01cbe28050.zip |
2002-07-22 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/stdio.h (fcloseall, _fcloseall_r): Added prototypes.
* libc/stdio/Makefile.am: Added fcloseall.c support.
* libc/stdio/Makefile.in: Regenerated.
* libc/stdio/fcloseall.c: New file.
* libc/stdio64/Makefile.am: Remove missing .def references.
* libc/stdio64/Makefile.in: Regenerated.
Diffstat (limited to 'newlib/libc/include/stdio.h')
-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 9e93ed5bc..debeb2b3b 100644 --- a/newlib/libc/include/stdio.h +++ b/newlib/libc/include/stdio.h @@ -204,6 +204,7 @@ int _EXFUN(rename, (const char *, const char *)); #endif #ifndef __STRICT_ANSI__ int _EXFUN(asprintf, (char **, const char *, ...)); +int _EXFUN(fcloseall, (_VOID)); int _EXFUN(fseeko, (FILE *, off_t, int)); off_t _EXFUN(ftello, ( FILE *)); int _EXFUN(vfiprintf, (FILE *, const char *, __VALIST)); @@ -250,6 +251,7 @@ int _EXFUN(putchar_unlocked, (int)); */ int _EXFUN(_asprintf_r, (struct _reent *, char **, const char *, ...)); +int _EXFUN(_fcloseall_r, (struct _reent *)); FILE * _EXFUN(_fdopen_r, (struct _reent *, int, const char *)); FILE * _EXFUN(_fopen_r, (struct _reent *, const char *, const char *)); int _EXFUN(_fscanf_r, (struct _reent *, FILE *, const char *, ...)); |