date and time created 83/11/10 16:04:16 by ralph
[unix-history] / usr / src / lib / libc / stdio / tempnam.c
/* @(#)tempnam.c 4.1 (Berkeley) %G% */
char *tmpnam(s)
char *s;
{
static seed;
sprintf(s, "temp.%d.%d", getpid(), seed++);
return(s);
}