blob: 14704a9e30e9b377e1cf543e279c510b9de01fe4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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 */
|