diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-04-30 05:49:31 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-04-30 05:49:31 +0000 |
commit | ce968e8da552bcdef5eb19f76aabbba50035d617 (patch) | |
tree | c6a1211abcb3ea59bd13edad43bf637686f90276 /lib/libc/sys/timer_settime.c | |
parent | aa71d0fbc3abb7db0083e31421dd7bb7a4a747cb (diff) |
Be silent about unused arguments
Diffstat (limited to 'lib/libc/sys/timer_settime.c')
-rw-r--r-- | lib/libc/sys/timer_settime.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/sys/timer_settime.c b/lib/libc/sys/timer_settime.c index aa7a05d3f9e..cbf5e07f35c 100644 --- a/lib/libc/sys/timer_settime.c +++ b/lib/libc/sys/timer_settime.c @@ -1,11 +1,12 @@ #if defined(SYSLIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: timer_settime.c,v 1.2 1997/04/26 08:49:35 tholo Exp $"; +static char rcsid[] = "$OpenBSD: timer_settime.c,v 1.3 1997/04/30 05:49:30 tholo Exp $"; #endif /* SYSLIBC_SCCS and not lint */ #include <signal.h> #include <time.h> #include <errno.h> +/* ARGSUSED */ int timer_settime(timerid, flags, value, ovalue) timer_t timerid; |