mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 00:30:07 +00:00
17 lines
259 B
C
17 lines
259 B
C
|
#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 */
|