summaryrefslogtreecommitdiff
path: root/mktemp.h
blob: ac92cbae05da364f7f67d62ff9e8f71b96e922ab (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _MKTEMP_H
#define _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 /* _MKTEMP_H */