#ifndef _BITS_TIMESPEC_H
#define _BITS_TIMESPEC_H

typedef struct {
    time_t tv_sec;
    long tv_nsec;
} timespec;

#endif