Damien Miller | 04f8014 | 1999-11-19 15:32:34 +1100 | [diff] [blame] | 1 | #ifndef _BSD_MKTEMP_H |
| 2 | #define _BSD_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 | |
Damien Miller | 04f8014 | 1999-11-19 15:32:34 +1100 | [diff] [blame] | 11 | #endif /* _BSD_MKTEMP_H */ |