diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-11 21:03:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-11 21:03:11 +0000 |
commit | 4dba6a5e639357ec5b17c397ad648b7c98e3ba12 (patch) | |
tree | 108501f056c58743e71328f45cbc63154295e75a /lib/libc/sys/timer_gettime.c | |
parent | e9c67dcf958b38635d2c444765b8d17227635cc5 (diff) |
ansification; checked by pval
Diffstat (limited to 'lib/libc/sys/timer_gettime.c')
-rw-r--r-- | lib/libc/sys/timer_gettime.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/sys/timer_gettime.c b/lib/libc/sys/timer_gettime.c index acbfdc8cd75..c135299f659 100644 --- a/lib/libc/sys/timer_gettime.c +++ b/lib/libc/sys/timer_gettime.c @@ -1,5 +1,5 @@ #if defined(SYSLIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: timer_gettime.c,v 1.4 1998/02/07 20:50:55 tholo Exp $"; +static char rcsid[] = "$OpenBSD: timer_gettime.c,v 1.5 2003/06/11 21:03:10 deraadt Exp $"; #endif /* SYSLIBC_SCCS and not lint */ #include <signal.h> @@ -10,9 +10,7 @@ struct itimerspec; /* ARGSUSED */ int -timer_gettime(timerid, value) - timer_t timerid; - struct itimerspec *value; +timer_gettime(timer_t timerid, struct itimerspec *value) { errno = ENOSYS; return -1; |