struct___timeb64.h 259 B

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