1 /* $OpenBSD: timer_getoverrun.c,v 1.6 2015/09/12 13:13:34 guenther Exp $ */ 2 3 #include <time.h> 4 #include <errno.h> 5 6 int timer_getoverrun(timer_t); 7 PROTO_DEPRECATED(timer_getoverrun); 8 9 int 10 timer_getoverrun(timer_t timerid) 11 { 12 errno = ENOSYS; 13 return -1; 14 } 15