diff options
author | Roland McGrath <roland@gnu.org> | 1996-06-17 22:41:47 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-06-17 22:41:47 +0000 |
commit | 2cc7dc4d7f36d03165c16939429d1ee9ef5fd105 (patch) | |
tree | 3845e34ed2e19ae0140d4a526a88327d0daac395 /libio | |
parent | 61ee476c446b6cd682e49805d86bc2ed0230e5d0 (diff) | |
download | glibc-2cc7dc4d7f36d03165c16939429d1ee9ef5fd105.zip glibc-2cc7dc4d7f36d03165c16939429d1ee9ef5fd105.tar.gz glibc-2cc7dc4d7f36d03165c16939429d1ee9ef5fd105.tar.bz2 |
Mon Jun 17 17:53:21 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* sysdeps/mach/hurd/brk.c (___brk_addr): Define as weak alias for
_hurd_brk.
* libio/stdio.h [__USE_SVID]: Declare tempnam.
Fri Jun 14 19:28:33 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/unix/sysv/linux/syscalls.list: Add swapon with two
parameters.
Wed Jun 12 20:40:51 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/m68k/dl-machine.h (RTLD_START): Fix access to
_dl_default_scope.
* sysdeps/stub/elfclass.h: New file.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/stdio.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libio/stdio.h b/libio/stdio.h index e2670c9..022d210 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -135,6 +135,9 @@ extern int sprintf __P ((char*, __const char* format, ...)); extern int sscanf __P ((__const char* string, __const char* format, ...)); extern FILE* tmpfile __P ((void)); extern char* tmpnam __P ((char*)); +#ifdef __USE_SVID +extern char *tempnam __P ((__const char *__dir, __const char *__pfx)); +#endif extern char *__stdio_gen_tempname __P ((__const char *dir, __const char *pfx, int dir_search, size_t *lenptr, FILE **streamptr)); |