date and time created 80/12/21 16:51:02 by wnj
[unix-history] / usr / src / lib / libc / stdio / tempnam.c
CommitLineData
93ced3e8
BJ
1/* @(#)tempnam.c 4.1 (Berkeley) %G% */
2char *tmpnam(s)
3char *s;
4{
5 static seed;
6
7 sprintf(s, "temp.%d.%d", getpid(), seed++);
8 return(s);
9}