mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 10:34:41 +01:00
9ea2a99edb
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@15071 a95241bf-73f2-0310-859d-f6bbb57e9c96
40 lines
618 B
C
40 lines
618 B
C
#include <stdio.h>
|
|
|
|
#ifndef L_tmpnam
|
|
#define L_tmpnam 100
|
|
#endif
|
|
#ifndef P_tmpdir
|
|
#define P_tmpdir "/usr/tmp"
|
|
#endif
|
|
|
|
static char tmpnam_buffer[L_tmpnam];
|
|
static int tmpnam_counter;
|
|
|
|
extern int getpid ();
|
|
|
|
char *
|
|
tmpnam (s)
|
|
char *s;
|
|
{
|
|
int pid = getpid ();
|
|
|
|
if (s == NULL)
|
|
s = tmpnam_buffer;
|
|
|
|
/* Generate the filename and make sure that there isn't one called
|
|
it already. */
|
|
|
|
while (1)
|
|
{
|
|
FILE *f;
|
|
sprintf (s, "%s/%s%x.%x", P_tmpdir, "t", pid, tmpnam_counter);
|
|
f = fopen (s, "r");
|
|
if (f == NULL)
|
|
break;
|
|
tmpnam_counter++;
|
|
fclose (f);
|
|
}
|
|
|
|
return s;
|
|
}
|