12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef _SYS_TIMEB_H
- #define _SYS_TIMEB_H 1
- #include <features.h>
- #define __need_time_t
- #include <time.h>
- __BEGIN_DECLS
- struct timeb
- {
- time_t time;
- unsigned short int millitm;
- short int timezone;
- short int dstflag;
- };
- extern int ftime (struct timeb *__timebuf);
- __END_DECLS
- #endif
|