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

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

/*	return rc;
 * }
 */