// // Created by rick on 10-03-21. // #ifndef NEW_KERNEL_TIME_H #define NEW_KERNEL_TIME_H typedef uint32_t time_t; struct timespec { time_t tv_sec; long tv_nsec; }; #endif //NEW_KERNEL_TIME_H