📄 setitimer.c
字号:
#ifndef LINTstatic const char rcsid[] = "$Id: setitimer.c,v 1.1 2001/03/29 06:30:35 marka Exp $";#endif#include "port_before.h"#include <sys/time.h>#include "port_after.h"/* * Setitimer emulation routine. */#ifndef NEED_SETITIMERint __bindcompat_setitimer;#elseint__setitimer(int which, const struct itimerval *value, struct itimerval *ovalue){ if (alarm(value->it_value.tv_sec) >= 0) return (0); else return (-1);}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -