aboutsummaryrefslogtreecommitdiff
path: root/libio/stdio.h
diff options
context:
space:
mode:
Diffstat (limited to 'libio/stdio.h')
-rw-r--r--libio/stdio.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/libio/stdio.h b/libio/stdio.h
index a3ae40b536..7b5e4f857f 100644
--- a/libio/stdio.h
+++ b/libio/stdio.h
@@ -72,15 +72,12 @@ typedef _G_fpos64_t fpos_t;
typedef _G_fpos64_t fpos64_t;
#endif
-/* Generate a unique file name (and possibly open it with mode "w+b"). */
-extern char *__stdio_gen_tempname __P ((char *__buf, size_t __bufsize,
- __const char *__dir,
- __const char *__pfx,
- int __dir_search,
- size_t *__lenptr,
- FILE **__streamptr,
- int __large_file));
+/* Generate a unique file name (and possibly open it). */
+extern int __path_search __P ((char *__tmpl, size_t __tmpl_len,
+ __const char *__dir,
+ __const char *__pfx));
+extern int __gen_tempname __P ((char *__tmpl, int __openit, int __large_file));
/* Print out MESSAGE on the error output and abort. */
extern void __libc_fatal __P ((__const char *__message))