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 /* ARGSUSED */ 8 int 9 timer_getoverrun(timer_t timerid) 10 { 11 errno = ENOSYS; 12 return -1; 13 } 14