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