1 #if defined(SYSLIBC_SCCS) && !defined(lint) 2 static char rcsid[] = "$OpenBSD: timer_gettime.c,v 1.4 1998/02/07 20:50:55 tholo Exp $"; 3 #endif /* SYSLIBC_SCCS and not lint */ 4 5 #include <signal.h> 6 #include <time.h> 7 #include <errno.h> 8 9 struct itimerspec; 10 11 /* ARGSUSED */ 12 int 13 timer_gettime(timerid, value) 14 timer_t timerid; 15 struct itimerspec *value; 16 { 17 errno = ENOSYS; 18 return -1; 19 } 20