aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/mkstemp64.c
blob: 487f256a3389b4d18bb21730c40d1b1f0ba9ca14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 
 * Copyright (c) 2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * static int
 * wrap_mkstemp64(char *template) {
 *	int rc = -1;
 */
	/* mkstemp64() is just like mkostemp64() with no flags */
	rc = wrap_mkostemp64(template, 0);

/*	return rc;
 * }
 */