diff options
author | Nick Clifton <nickc@redhat.com> | 2001-11-14 11:56:41 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-11-14 11:56:41 +0000 |
commit | a6a256529f6ced31a2b2b8a862e78d92081390b3 (patch) | |
tree | d7b0d64249df18fc3c6e167c82ec886c2c81ddad /binutils/bucomm.c | |
parent | 86017ce9182c6fbf7ac2a6da323366bd765c2536 (diff) | |
download | gdb-a6a256529f6ced31a2b2b8a862e78d92081390b3.zip gdb-a6a256529f6ced31a2b2b8a862e78d92081390b3.tar.gz gdb-a6a256529f6ced31a2b2b8a862e78d92081390b3.tar.bz2 |
Replace use of mkstemp with mkstemps, provided by libiberty.
Diffstat (limited to 'binutils/bucomm.c')
-rw-r--r-- | binutils/bucomm.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/binutils/bucomm.c b/binutils/bucomm.c index 8cccd6b..68b191b 100644 --- a/binutils/bucomm.c +++ b/binutils/bucomm.c @@ -35,6 +35,9 @@ typedef long time_t; #endif #endif + +/* Ought to be defined in libiberty.h... */ +extern int mkstemps PARAMS ((char *, int)); /* Error reporting */ @@ -233,14 +236,14 @@ make_tempname (filename) #endif strcat (tmpname, "/"); strcat (tmpname, template); - close (mkstemp (tmpname)); + close (mkstemps (tmpname, 0)); *slash = c; } else { tmpname = xmalloc (sizeof (template)); strcpy (tmpname, template); - close (mkstemp (tmpname)); + close (mkstemps (tmpname, 0)); } return tmpname; } |