diff options
author | 1997-04-30 05:49:28 +0000 | |
---|---|---|
committer | 1997-04-30 05:49:28 +0000 | |
commit | ac14f12785893b3630b2ee5264682dc9347d4468 (patch) | |
tree | 92ab2a3482bc60087012d11ff2bf857853794df1 /lib/libc/sys/timer_getoverrun.c | |
parent | Add the entries powerpc port. These have not been examined closely, but (diff) | |
download | wireguard-openbsd-ac14f12785893b3630b2ee5264682dc9347d4468.tar.xz wireguard-openbsd-ac14f12785893b3630b2ee5264682dc9347d4468.zip |
Be silent about unused arguments
Diffstat (limited to 'lib/libc/sys/timer_getoverrun.c')
-rw-r--r-- | lib/libc/sys/timer_getoverrun.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/sys/timer_getoverrun.c b/lib/libc/sys/timer_getoverrun.c index 4c5a79dfafb..9fc7b512be2 100644 --- a/lib/libc/sys/timer_getoverrun.c +++ b/lib/libc/sys/timer_getoverrun.c @@ -1,11 +1,12 @@ #if defined(SYSLIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: timer_getoverrun.c,v 1.2 1997/04/26 08:49:34 tholo Exp $"; +static char rcsid[] = "$OpenBSD: timer_getoverrun.c,v 1.3 1997/04/30 05:49:29 tholo Exp $"; #endif /* SYSLIBC_SCCS and not lint */ #include <signal.h> #include <time.h> #include <errno.h> +/* ARGSUSED */ int timer_getoverrun(timerid) timer_t timerid; |