aboutsummaryrefslogtreecommitdiffstats
path: root/guts/tmpnam.c
blob: 3e1aab29cd078ee2b4a3eee47ce7fc1cdccb2e64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* 
 * static char *
 * wrap_tmpnam(char *s) {
 *	char * rc = NULL;
 */

	pseudo_diag("tmpnam() is so ludicrously insecure as to defy implementation.");
	errno = ENOMEM;
	rc = 0;

/*	return rc;
 * }
 */