xref: /openbsd-src/lib/libc/sys/timer_delete.c (revision 34ddfe61f594fc6a262aeb1e48135036c27a002e)
1*34ddfe61Sguenther /*	$OpenBSD: timer_delete.c,v 1.6 2015/09/12 13:13:34 guenther Exp $ */
2fec2e44eStholo 
3860d5110Stholo #include <time.h>
4860d5110Stholo #include <errno.h>
5860d5110Stholo 
6*34ddfe61Sguenther int	timer_delete(timer_t);
7*34ddfe61Sguenther PROTO_DEPRECATED(timer_delete);
8*34ddfe61Sguenther 
9860d5110Stholo int
timer_delete(timer_t timerid)10f723aa39Sderaadt timer_delete(timer_t timerid)
11860d5110Stholo {
12860d5110Stholo 	errno = ENOSYS;
13860d5110Stholo 	return -1;
14860d5110Stholo }
15