version 1.14 | | version 1.15 |
---|
| | |
/* | | /* |
* static char *rcsid_global_h = | | * static char *rcsid_global_h = |
* "$Id: global.h,v 1.14 2001/04/06 19:08:44 michtoen Exp $"; | | * "$Id: global.h,v 1.15 2001/04/09 06:59:46 mwedel Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
| | |
extern Settings settings; | | extern Settings settings; |
| | |
| | /* 0.94.1 - change to GETTIMEOFDAY macro - SNI systems only one one option. |
| | * rather than have complex #ifdefs throughout the file, lets just figure |
| | * it out once, here at the top. |
| | * Have no idea if that is the right symbol to check on for NetBSD, |
| | * but NetBSD does use 2 params. |
| | * Move this to global.h from time.c since its also used in arch.c |
| | */ |
| | |
| | #ifdef GETTIMEOFDAY_TWO_ARGS |
| | #define GETTIMEOFDAY(last_time) gettimeofday(last_time, (struct timezone *) NULL); |
| | #else |
| | #define GETTIMEOFDAY(last_time) gettimeofday(last_time); |
| | #endif |
| | |
| | |
#endif /* GLOBAL_H */ | | #endif /* GLOBAL_H */ |