settimeofday.c
来自「minix操作系统最新版本(3.1.1)的源代码」· C语言 代码 · 共 15 行
C
15 行
/*settimeofday.c*/#define stime _stime#include <sys/time.h>#include <time.h>int settimeofday(const struct timeval *tp, const void *tzp){ /* Ignore time zones */ return stime(&tp->tv_sec);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?