Hackery to handle ix86 "jmp constant" as a pc-relative jump to the given
[binutils.git] / libiberty / tmpnam.c
blobc06146774252f76a134a6201f035a41998a01aad
1 #include <stdio.h>
3 #ifndef L_tmpnam
4 #define L_tmpname 100
5 #endif
6 #ifndef P_tmpdir
7 #define P_tmpdir "/usr/tmp"
8 #endif
10 static char tmpnam_buffer[L_tmpnam];
11 static int tmpnam_counter;
13 extern int getpid ();
15 char *
16 tmpnam (s)
17 char *s;
19 int pid = getpid ();
21 if (s == NULL)
22 s = tmpnam_buffer;
24 /* Generate the filename and make sure that there isn't one called
25 it already. */
27 while (1)
29 FILE *f;
30 sprintf (s, "%s/%s%x.%x", P_tmpdir, "t", pid, tmpnam_counter);
31 f = fopen (s, "r");
32 if (f == NULL)
33 break;
34 tmpnam_counter++;
35 fclose (f);
38 return s;