1*7c478bd9Sstevel@tonic-gate /* $Id: mktemp.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */ 2*7c478bd9Sstevel@tonic-gate 3*7c478bd9Sstevel@tonic-gate #ifndef _MKTEMP_H 4*7c478bd9Sstevel@tonic-gate #define _MKTEMP_H 5*7c478bd9Sstevel@tonic-gate 6*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 7*7c478bd9Sstevel@tonic-gate 8*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 9*7c478bd9Sstevel@tonic-gate extern "C" { 10*7c478bd9Sstevel@tonic-gate #endif 11*7c478bd9Sstevel@tonic-gate 12*7c478bd9Sstevel@tonic-gate #include "config.h" 13*7c478bd9Sstevel@tonic-gate #ifndef HAVE_MKDTEMP 14*7c478bd9Sstevel@tonic-gate int mkstemps(char *path, int slen); 15*7c478bd9Sstevel@tonic-gate int mkstemp(char *path); 16*7c478bd9Sstevel@tonic-gate char *mkdtemp(char *path); 17*7c478bd9Sstevel@tonic-gate #endif /* !HAVE_MKDTEMP */ 18*7c478bd9Sstevel@tonic-gate 19*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 20*7c478bd9Sstevel@tonic-gate } 21*7c478bd9Sstevel@tonic-gate #endif 22*7c478bd9Sstevel@tonic-gate 23*7c478bd9Sstevel@tonic-gate #endif /* _MKTEMP_H */ 24