summaryrefslogtreecommitdiff
path: root/sys/src/libstdio/tmpnam.c
blob: 666e4dad9954ada1871ca8cbaf1cd2ed45ce0be5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * pANS stdio -- tmpnam
 */
#include "iolib.h"

char *tmpnam(char *s){
	static char name[]="/tmp/tn000000000000";
	char *p;
	do{
		p=name+7;
		while(*p=='9') *p++='0';
		if(*p=='\0') return NULL;
		++*p;
	}while(access(name, 0)==0);
	if(s){
		strcpy(s, name);
		return s;
	}
	return name;
}