⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setitimer.c

📁 非常好的dns解析软件
💻 C
字号:
#ifndef LINTstatic const char rcsid[] = "$Id: setitimer.c,v 1.1.352.1 2005/04/27 05:00:44 sra 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/*! \file */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -