summaryrefslogtreecommitdiff
path: root/lib/libc/sys/timer_delete.c
blob: cae43905868ba2078bcdca4bdd3d5d7e269e5ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if defined(SYSLIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: timer_delete.c,v 1.3 1997/04/30 05:49:29 tholo Exp $";
#endif /* SYSLIBC_SCCS and not lint */

#include <signal.h>
#include <time.h>
#include <errno.h>

/* ARGSUSED */
int
timer_delete(timerid)
	timer_t timerid;
{
	errno = ENOSYS;
	return -1;
}