BSD 3 development
[unix-history] / usr / src / libc / stdio / tmpnam.c
char *tmpnam(s)
char *s;
{
static seed;
sprintf(s, "temp.%d.%d", getpid(), seed++);
return(s);
}