version 1.5 | | version 1.6 |
---|
| | |
/* | | /* |
* static char *rcsid_porting_c = | | * static char *rcsid_porting_c = |
* "$Id: porting.c,v 1.5 2001/04/06 00:45:04 michtoen Exp $"; | | * "$Id: porting.c,v 1.6 2001/04/06 06:25:10 mwedel Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
*/ | | */ |
| | |
| | |
#include "global.h" | | #ifdef WIN32 |
#ifdef WIN32 // ---win32 exclude headers | | |
#include "process.h" | | #include "process.h" |
#else | | #else |
#include <ctype.h> | | #include <ctype.h> |
| | |
| | |
#include <sys/param.h> | | #include <sys/param.h> |
#include <stdio.h> | | #include <stdio.h> |
#endif // win32 | | #endif |
| | |
| | /* Need to pull in the HAVE_... values somehow */ |
| | #include <autoconf.h> |
| | |
#ifdef HAVE_STDLIB_H | | #ifdef HAVE_STDLIB_H |
#include <stdlib.h> | | #include <stdlib.h> |
| | |
#include <unistd.h> | | #include <unistd.h> |
#endif | | #endif |
| | |
| | /* Has to be after above includes so we don't redefine some values */ |
| | #include "global.h" |
| | |
static unsigned int curtmp = 0; | | static unsigned int curtmp = 0; |
| | |