aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/mkstemps.c
blob: 95b3b83709d20a09c61cf07d36947fc56d343068 (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 mkstemps(char *template, int suffixlen)
 *	int rc = -1;
 */

	/* mkstemps() is mkostemps() with no flags */
	rc = wrap_mkostemps(template, suffixlen, 0);

/*	return rc;
 * }
 */