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_create.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_create.c')
-rw-r--r-- | lib/libc/sys/timer_create.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/sys/timer_create.c b/lib/libc/sys/timer_create.c index d3b0b088212..55b147a5fbb 100644 --- a/lib/libc/sys/timer_create.c +++ b/lib/libc/sys/timer_create.c @@ -1,11 +1,12 @@ #if defined(SYSLIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: timer_create.c,v 1.2 1997/04/26 08:49:33 tholo Exp $"; +static char rcsid[] = "$OpenBSD: timer_create.c,v 1.3 1997/04/30 05:49:28 tholo Exp $"; #endif /* SYSLIBC_SCCS and not lint */ #include <signal.h> #include <time.h> #include <errno.h> +/* ARGSUSED */ int timer_create(clock_id, evp, timerid) clockid_t clock_id; |