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.
|
#ifndef _SYS_TIMEB_H
|
|
#define _SYS_TIMEB_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
struct timeb {
|
|
time_t time;
|
|
unsigned short millitm;
|
|
short timezone;
|
|
short dstflag;
|
|
};
|
|
|
|
#endif /* _SYS_TIMEB_H */
|