1999-10-27 05:42:43 +02:00
|
|
|
#ifndef _MKTEMP_H
|
|
|
|
#define _MKTEMP_H
|
1999-10-28 06:12:54 +02:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef HAVE_MKDTEMP
|
1999-10-27 05:42:43 +02:00
|
|
|
int mkstemps(char *path, int slen);
|
|
|
|
int mkstemp(char *path);
|
|
|
|
char *mkdtemp(char *path);
|
1999-10-28 06:12:54 +02:00
|
|
|
#endif /* !HAVE_MKDTEMP */
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#endif /* _MKTEMP_H */
|