1 /* $OpenBSD: timer_getoverrun.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ 2 3 #include <signal.h> 4 #include <time.h> 5 #include <errno.h> 6 7 __RCSID("$MirOS: src/lib/libc/sys/timer_getoverrun.c,v 1.2 2009/11/09 21:30:54 tg Exp $"); 8 9 int timer_getoverrun(timer_t); 10 11 /* ARGSUSED */ 12 int timer_getoverrun(timer_t timerid __unused)13timer_getoverrun(timer_t timerid __unused) 14 { 15 errno = ENOSYS; 16 return -1; 17 } 18