aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/mkstemp.c
blob: 8fab58b5465821560b4c854f4f47f5c84000898a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 
 * Copyright (c) 2008-2010, 2012 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_mkstemp(char *template) {
 *	int rc = -1;
 */
	/* mkstemp() is just like mkostemps() with no flags and no suffix */
	rc = wrap_mkostemps(template, 0, 0);

/*	return rc;
 * }
 */