diff options
Diffstat (limited to 'crypto/openssh/openbsd-compat/mktemp.h')
-rw-r--r-- | crypto/openssh/openbsd-compat/mktemp.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/crypto/openssh/openbsd-compat/mktemp.h b/crypto/openssh/openbsd-compat/mktemp.h new file mode 100644 index 0000000..6a96f6f --- /dev/null +++ b/crypto/openssh/openbsd-compat/mktemp.h @@ -0,0 +1,13 @@ +/* $Id: mktemp.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */ + +#ifndef _BSD_MKTEMP_H +#define _BSD_MKTEMP_H + +#include "config.h" +#ifndef HAVE_MKDTEMP +int mkstemps(char *path, int slen); +int mkstemp(char *path); +char *mkdtemp(char *path); +#endif /* !HAVE_MKDTEMP */ + +#endif /* _BSD_MKTEMP_H */ |