aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/mkstemp.c
blob: 0aab6eda1957d40ad514643623380b5cea1ca887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 
 * Copyright (c) 2008-2010, 2012 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * 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;
 * }
 */