From 3697ec5ca140f686643d204a54181a5ddbf9a799 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Thu, 15 Jul 2010 23:12:49 +0300 Subject: Moved to gawk 2.11. --- missing.d/tmpnam.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 missing.d/tmpnam.c (limited to 'missing.d/tmpnam.c') diff --git a/missing.d/tmpnam.c b/missing.d/tmpnam.c new file mode 100644 index 00000000..8f49859a --- /dev/null +++ b/missing.d/tmpnam.c @@ -0,0 +1,27 @@ +/* + * tmpnam - an implementation for systems lacking a library version + * this version does not rely on the P_tmpdir and L_tmpnam constants. + */ + +#ifndef NULL +#define NULL 0 +#endif + +static char template[] = "/tmp/gawkXXXXXX"; + +char * +tmpnam(tmp) +char *tmp; +{ + static char tmpbuf[sizeof(template)]; + + if (tmp == NULL) { + (void) strcpy(tmpbuf, template); + (void) mktemp(tmpbuf); + return tmpbuf; + } else { + (void) strcpy(tmp, template); + (void) mktemp(tmp); + return tmp; + } +} -- cgit v1.2.3