mkdtemp.h
author insilmaril
Fri, 05 Mar 2010 20:16:46 +0000
branchrelease-1-12-maintained
changeset 80 5c5b4464b24f
permissions -rwxr-xr-x
Some changes by Tagg for Win version
     1 #ifndef MKDTEMP_H
     2 #define MKDTEMP_H
     3 
     4 extern char *mkdtemp(char *_template);
     5 
     6 #ifndef WIN32
     7 #include <sys/time.h>
     8 #else
     9 #include <time.h>
    10 #include <direct.h>
    11 typedef int pid_t;
    12 #endif
    13 
    14 extern "C" {
    15 pid_t getpid (void);
    16 }
    17 
    18 #endif