Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1 | #ifndef _MKTEMP_H |
| 2 | #define _MKTEMP_H |
Damien Miller | e413cba | 1999-10-28 14:12:54 +1000 | [diff] [blame] | 3 | |
| 4 | #include "config.h" |
| 5 | #ifndef HAVE_MKDTEMP |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 6 | int mkstemps(char *path, int slen); |
| 7 | int mkstemp(char *path); |
| 8 | char *mkdtemp(char *path); |
Damien Miller | e413cba | 1999-10-28 14:12:54 +1000 | [diff] [blame] | 9 | #endif /* !HAVE_MKDTEMP */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 10 | |
| 11 | #endif /* _MKTEMP_H */ |