#ifndef _TIME_H #define _TIME_H #include "sys/types.h" time_t time(time_t *time); struct tm* gmtime_r(const time_t* timer, struct tm* tmp); #endif /* _TIME_H */