blob: 6a96f6fa63414a67fcd5fe256165d841bd7ac934 [file] [log] [blame]
Damien Millere9cf3572001-02-09 12:55:35 +11001/* $Id: mktemp.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
2
Damien Miller04f80141999-11-19 15:32:34 +11003#ifndef _BSD_MKTEMP_H
4#define _BSD_MKTEMP_H
Damien Millere413cba1999-10-28 14:12:54 +10005
6#include "config.h"
7#ifndef HAVE_MKDTEMP
Damien Millerd4a8b7e1999-10-27 13:42:43 +10008int mkstemps(char *path, int slen);
9int mkstemp(char *path);
10char *mkdtemp(char *path);
Damien Millere413cba1999-10-28 14:12:54 +100011#endif /* !HAVE_MKDTEMP */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100012
Damien Miller04f80141999-11-19 15:32:34 +110013#endif /* _BSD_MKTEMP_H */