getusershell: skip blank lines and comments
[musl.git] / include / sys / timeb.h
blob628239b7ed9342ad8f19a655c290b4be2c6ba213
1 #ifndef _SYS_TIMEB_H
2 #define _SYS_TIMEB_H
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
7 #include <features.h>
9 #define __NEED_time_t
11 #include <bits/alltypes.h>
13 struct timeb {
14 time_t time;
15 unsigned short millitm;
16 short timezone, dstflag;
19 int ftime(struct timeb *);
21 #if _REDIR_TIME64
22 __REDIR(ftime, __ftime64);
23 #endif
25 #ifdef __cplusplus
27 #endif
28 #endif