aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/mkostemp.c
blob: 199ff20d4104d5aaa7ea36d2d4e2729243ebe5cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2018 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * int mkostemp(char *template, int oflags)
 *	int rc = -1;
 */

	/* mkostemp = mkostemps() with suffixlen of 0 */
	rc = wrap_mkostemps(template, 0, oflags);

/*	return rc;
 * }
 */