aboutsummaryrefslogtreecommitdiffstats
path: root/guts/tempnam.c
blob: b2c199044c64889dd1b30c8c5c205b0bf4794645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 
 * Copyright (c) 2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static char *
 * wrap_tempnam(const char *template, const char *pfx) {
 *	char * rc = NULL;
 */
	pseudo_diag("tempnam() is so ludicrously insecure as to defy implementation.");
	errno = ENOMEM;
	rc = NULL;

/*	return rc;
 * }
 */