12 lines
135 B
C
12 lines
135 B
C
|
#include <signal.h>
|
||
|
#include <time.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
int
|
||
|
timer_delete(timerid)
|
||
|
timer_t timerid;
|
||
|
{
|
||
|
errno = ENOSYS;
|
||
|
return -1;
|
||
|
}
|