blob: faddc916ee224cef5bd21db940eaaecdaa6f028c [file] [log] [blame]
Damien Miller04f80141999-11-19 15:32:34 +11001#ifndef _BSD_MKTEMP_H
2#define _BSD_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
Damien Miller04f80141999-11-19 15:32:34 +110011#endif /* _BSD_MKTEMP_H */