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

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

/*	return rc;
 * }
 */