diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/egcs/include/libiberty.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/egcs/include/libiberty.h b/gnu/egcs/include/libiberty.h index cf313662ef4..316f52a72b6 100644 --- a/gnu/egcs/include/libiberty.h +++ b/gnu/egcs/include/libiberty.h @@ -55,10 +55,14 @@ extern int fdmatch PARAMS ((int fd1, int fd2)); extern long get_run_time PARAMS ((void)); -/* Choose a temporary directory to use for scratch files. */ +/* Choose a temporary directory to use for scratch files, DEPRECATED */ extern char *choose_temp_base PARAMS ((void)); +/* Create a temporary file with a given suffix (optional) */ + +extern char *make_temp_file PARAMS ((char *)); + /* Allocate memory filled with spaces. Allocates using malloc. */ extern const char *spaces PARAMS ((int count)); |