#ifndef TIME_H_
#define TIME_H_
typedef long long time_t;
struct timespec {
time_t tv_sec;
long long tv_nsec;
};
#endif