?? setitimer.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 + -