summaryrefslogtreecommitdiffstats
path: root/bsd-mktemp.h
blob: faddc916ee224cef5bd21db940eaaecdaa6f028c (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _BSD_MKTEMP_H
#define _BSD_MKTEMP_H

#include "config.h"
#ifndef HAVE_MKDTEMP
int mkstemps(char *path, int slen);
int mkstemp(char *path);
char *mkdtemp(char *path);
#endif /* !HAVE_MKDTEMP */

#endif /* _BSD_MKTEMP_H */