Compile fix for OS X (which does not define loff_t)

This commit is contained in:
nigel 2003-11-18 11:14:43 +00:00
parent e9f3546539
commit ee0958380c

View File

@ -155,6 +155,10 @@ typedef int64 intptr;
#error "Unsupported size of pointer"
#endif
#ifndef HAVE_LOFF_T
typedef off_t loff_t;
#endif
/* Time data type for Time Manager emulation */
#ifdef HAVE_CLOCK_GETTIME
typedef struct timespec tm_time_t;