home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
gnu
/
emacs-19.28-src.lha
/
emacs-19.28
/
unixlib
/
src
/
tmpnam.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-10-24
|
197 b
|
14 lines
#include "amiga.h"
#include <string.h>
#include <stdio.h>
char *tmpnam(char *s)
{
static char tmpbuf[L_tmpnam];
if (!s) s = tmpbuf;
strcpy(s, P_tmpdir "tmp_XXXXXX");
return mktemp(s);
}