#include <unistd.h> #include <time.h> int usleep(useconds_t useconds) { struct timespec tv = { .tv_sec = useconds/1000000, ...
確定! 回上一頁