You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
259 B

#ifndef _STRUCT_TIMEB64_H
#define _STRUCT_TIMEB64_H
#if __TIMESIZE == 64
# define __timeb64 timeb
#else
struct __timeb64
{
__time64_t time;
unsigned short int millitm;
short int timezone;
short int dstflag;
};
#endif
#endif /* _STRUCT_TIMEB64_H */