blob: ac92cbae05da364f7f67d62ff9e8f71b96e922ab [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001#ifndef _MKTEMP_H
2#define _MKTEMP_H
Damien Millere413cba1999-10-28 14:12:54 +10003
4#include "config.h"
5#ifndef HAVE_MKDTEMP
Damien Millerd4a8b7e1999-10-27 13:42:43 +10006int mkstemps(char *path, int slen);
7int mkstemp(char *path);
8char *mkdtemp(char *path);
Damien Millere413cba1999-10-28 14:12:54 +10009#endif /* !HAVE_MKDTEMP */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100010
11#endif /* _MKTEMP_H */