1 #ifndef _STRUCT_TIMEB64_H 2 #define _STRUCT_TIMEB64_H 3 4 #if __TIMESIZE == 64 5 # define __timeb64 timeb 6 #else 7 struct __timeb64 8 { 9 __time64_t time; 10 unsigned short int millitm; 11 short int timezone; 12 short int dstflag; 13 }; 14 #endif 15 16 #endif /* _STRUCT_TIMEB64_H */ 17