00001 /* 00002 * Copyright (c) 2005-2012 by KoanLogic s.r.l. - All rights reserved. 00003 */ 00004 00005 #ifndef _LIBU_MKSTEMPS_H_ 00006 #define _LIBU_MKSTEMPS_H_ 00007 00008 #include <u/libu_conf.h> 00009 00010 #ifdef HAVE_MKSTEMPS 00011 #include <stdlib.h> 00012 #else /* !HAVE_MKSTEMPS */ 00013 00014 #ifdef __cplusplus 00015 extern "C" { 00016 #endif /* __cplusplus */ 00017 00018 int mkstemps (char *template, int suffixlen); 00019 00020 #ifdef __cplusplus 00021 } 00022 #endif /* __cplusplus */ 00023 00024 #endif /* HAVE_MKTEMP */ 00025 00026 #endif /* !_LIBU_MKSTEMPS_H_ */