📄 systimes.c
字号:
/* connector for times */#include <reent.h>#include <sys/times.h>clock_t_DEFUN (times, (buf), struct tms *buf){#ifdef REENTRANT_SYSCALLS_PROVIDED return _times_r (_REENT, buf);#else return _times (buf);#endif}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -