1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef __SYS_TIME_H #define __SYS_TIME_H #include <stdint.h> #ifdef __cplusplus extern "C" { #endif int nanosleep(uint64_t sec, uint64_t nsec); #ifdef __cplusplus } #endif #endif