From ac14f12785893b3630b2ee5264682dc9347d4468 Mon Sep 17 00:00:00 2001 From: tholo Date: Wed, 30 Apr 1997 05:49:28 +0000 Subject: [PATCH] Be silent about unused arguments --- lib/libc/sys/timer_create.c | 3 ++- lib/libc/sys/timer_delete.c | 3 ++- lib/libc/sys/timer_getoverrun.c | 3 ++- lib/libc/sys/timer_gettime.c | 3 ++- lib/libc/sys/timer_settime.c | 3 ++- 5 files changed, 10 insertions(+), 5 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 #include #include +/* ARGSUSED */ int timer_create(clock_id, evp, timerid) clockid_t clock_id; diff --git a/lib/libc/sys/timer_delete.c b/lib/libc/sys/timer_delete.c index 2ac033580b9..cae43905868 100644 --- a/lib/libc/sys/timer_delete.c +++ b/lib/libc/sys/timer_delete.c @@ -1,11 +1,12 @@ #if defined(SYSLIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: timer_delete.c,v 1.2 1997/04/26 08:49:33 tholo Exp $"; +static char rcsid[] = "$OpenBSD: timer_delete.c,v 1.3 1997/04/30 05:49:29 tholo Exp $"; #endif /* SYSLIBC_SCCS and not lint */ #include #include #include +/* ARGSUSED */ int timer_delete(timerid) timer_t timerid; 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 #include #include +/* ARGSUSED */ int timer_getoverrun(timerid) timer_t timerid; diff --git a/lib/libc/sys/timer_gettime.c b/lib/libc/sys/timer_gettime.c index f96a7aa0df9..6c038788fc3 100644 --- a/lib/libc/sys/timer_gettime.c +++ b/lib/libc/sys/timer_gettime.c @@ -1,11 +1,12 @@ #if defined(SYSLIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: timer_gettime.c,v 1.2 1997/04/26 08:49:34 tholo Exp $"; +static char rcsid[] = "$OpenBSD: timer_gettime.c,v 1.3 1997/04/30 05:49:30 tholo Exp $"; #endif /* SYSLIBC_SCCS and not lint */ #include #include #include +/* ARGSUSED */ int timer_gettime(timerid, value) timer_t timerid; 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 #include #include +/* ARGSUSED */ int timer_settime(timerid, flags, value, ovalue) timer_t timerid; -- 2.20.1