2001-02-09 01:55:35 +00:00
|
|
|
/* $Id: mktemp.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
|
|
|
|
|
1999-11-19 04:32:34 +00:00
|
|
|
#ifndef _BSD_MKTEMP_H
|
|
|
|
#define _BSD_MKTEMP_H
|
1999-10-28 04:12:54 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef HAVE_MKDTEMP
|
1999-10-27 03:42:43 +00:00
|
|
|
int mkstemps(char *path, int slen);
|
|
|
|
int mkstemp(char *path);
|
|
|
|
char *mkdtemp(char *path);
|
1999-10-28 04:12:54 +00:00
|
|
|
#endif /* !HAVE_MKDTEMP */
|
1999-10-27 03:42:43 +00:00
|
|
|
|
1999-11-19 04:32:34 +00:00
|
|
|
#endif /* _BSD_MKTEMP_H */
|