📄 mysleep.h
字号:
#if defined __linux__ && (!defined(__GLIBC__) || (__GLIBC__ < 2))/* * Linux libc 5. sleep() is implemented in terms of alarm() and sigpause(). * This doesn't work, since inetd uses alarm itself. */#define USE_MYSLEEP#endif /* linux & libc5 */#ifndef USE_MYSLEEP#define mysleep(s) sleep(s)#elsevoid mysleep(int);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -