timer_delete.c revision 1.2
1#if defined(SYSLIBC_SCCS) && !defined(lint)
2static char rcsid[] = "$OpenBSD: timer_delete.c,v 1.2 1997/04/26 08:49:33 tholo Exp $";
3#endif /* SYSLIBC_SCCS and not lint */
4
5#include <signal.h>
6#include <time.h>
7#include <errno.h>
8
9int
10timer_delete(timerid)
11	timer_t timerid;
12{
13	errno = ENOSYS;
14	return -1;
15}
16