setitimer.c
来自「package of develop dns」· C语言 代码 · 共 28 行
C
28 行
#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 + =
减小字号Ctrl + -
显示快捷键?