1 2 #ifndef __SYS_TIMESPEC_H__ 3 #define __SYS_TIMESPEC_H__ 4 5 #include <sys/types.h> 6 7 struct timespec { 8 time_t tv_sec; 9 long tv_nsec; 10 }; 11 12 #endif /* __SYS_TIMESPEC_H__ */ 13 14