timespec.h 125 B

123456789
  1. #ifndef _BITS_TIMESPEC_H
  2. #define _BITS_TIMESPEC_H
  3. typedef struct {
  4. time_t tv_sec;
  5. long tv_nsec;
  6. } timespec;
  7. #endif