1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #ifndef __need_timeval
- # ifndef _BITS_TIME_H
- # define _BITS_TIME_H 1
- # define CLOCKS_PER_SEC 1000000
- # ifndef __STRICT_ANSI__
- # define CLK_TCK 100
- # endif
- # endif
- #endif
- #ifdef __need_timeval
- # undef __need_timeval
- # ifndef _STRUCT_TIMEVAL
- # define _STRUCT_TIMEVAL 1
- # include <bits/types.h>
- struct timeval
- {
- __time_t tv_sec;
- __time_t tv_usec;
- };
- # endif
- #endif
|