mirror of
https://github.com/wnayes/macutils.git
synced 2025-01-02 11:31:19 +00:00
15 lines
240 B
C
15 lines
240 B
C
#ifdef TYPES_H
|
|
#include <sys/types.h>
|
|
#endif /* TYPES_H */
|
|
|
|
#ifdef BSD
|
|
#include <sys/time.h>
|
|
extern time_t time();
|
|
#else /* BSD */
|
|
#include <time.h>
|
|
#endif /* BSD */
|
|
|
|
/* Mac time of 00:00:00 GMT, Jan 1, 1970 */
|
|
#define TIMEDIFF 0x7c25b080
|
|
|