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

int mkstemps(char *template, int len)
{
	return __mkostemps(template, len, 0);
}

LFS64(mkstemps);