aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@gnu.org>1996-04-17 18:46:32 +0000
committerDoug Evans <dje@gnu.org>1996-04-17 18:46:32 +0000
commit402e1fd13fdb9a82b12b323dfe2a0b9a524565b0 (patch)
tree392a26eeae5a774a7454c481934a28ef602d72c0
parent0980566f5d49ff1fffd0fc2a211bda8783a90fb0 (diff)
downloadgcc-402e1fd13fdb9a82b12b323dfe2a0b9a524565b0.zip
gcc-402e1fd13fdb9a82b12b323dfe2a0b9a524565b0.tar.gz
gcc-402e1fd13fdb9a82b12b323dfe2a0b9a524565b0.tar.bz2
(choose_temp_base): Undo renaming. Yeesh.
From-SVN: r11837
-rw-r--r--gcc/choose-temp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/choose-temp.c b/gcc/choose-temp.c
index 73a7411..ae79892 100644
--- a/gcc/choose-temp.c
+++ b/gcc/choose-temp.c
@@ -1,4 +1,4 @@
-/* Utility to pick a temporary directory.
+/* Utility to pick a temporary filename prefix.
Copyright (C) 1996 Free Software Foundation, Inc.
This file is part of the libiberty library.
@@ -17,7 +17,7 @@ License along with libiberty; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-/* This file exports one function: choose_tmpdir. */
+/* This file exports one function: choose_temp_base. */
#if ! defined (_WIN32) && ! defined (NO_SYS_FILE_H)
#include <sys/file.h> /* May get R_OK, etc. on some systems. */
@@ -87,7 +87,7 @@ try (dir, base)
The buffer for the result is obtained with xmalloc. */
char *
-choose_tmpdir ()
+choose_temp_base ()
{
char *base = 0;
char *temp_filename;