summaryrefslogtreecommitdiff
path: root/src/temp/mkostemp.c
blob: 4fe5713789e366409453c775b68ea40a8bb22039 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#define _BSD_SOURCE
#include <stdlib.h>
#include "libc.h"

int mkostemp(char *template, int flags)
{
	return __mkostemps(template, 0, flags);
}

LFS64(mkostemp);