diff options
Diffstat (limited to 'common/compat.h')
-rw-r--r-- | common/compat.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/common/compat.h b/common/compat.h index cb4d2ad..0299cd3 100644 --- a/common/compat.h +++ b/common/compat.h @@ -74,6 +74,18 @@ char * basename (const char *name); #endif /* HAVE_BASENAME */ +#ifndef HAVE_MKSTEMP + +int mkstemp (char *template); + +#endif /* HAVE_MKSTEMP */ + +#ifndef HAVE_MKDTEMP + +char * mkdtemp (char *template); + +#endif /* HAVE_MKDTEMP */ + /* ----------------------------------------------------------------------------- * WIN32 */ |