From f01d533d35fc2a54102a47493925519537ec3cb9 Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 13 Jul 1997 19:32:15 +0000 Subject: [PATCH] Fix RCSID's Remove unused variable --- lib/libc/gen/sysconf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/libc/gen/sysconf.c b/lib/libc/gen/sysconf.c index 4363e2b1e7b2..a212dada0572 100644 --- a/lib/libc/gen/sysconf.c +++ b/lib/libc/gen/sysconf.c @@ -1,4 +1,4 @@ -/* $NetBSD: sysconf.c,v 1.3 1995/03/04 01:56:09 cgd Exp $ */ +/* $NetBSD: sysconf.c,v 1.4 1997/07/13 19:32:15 christos Exp $ */ /*- * Copyright (c) 1993 @@ -36,11 +36,12 @@ * SUCH DAMAGE. */ +#include #if defined(LIBC_SCCS) && !defined(lint) #if 0 static char sccsid[] = "@(#)sysconf.c 8.2 (Berkeley) 3/20/94"; #else -static char rcsid[] = "$NetBSD: sysconf.c,v 1.3 1995/03/04 01:56:09 cgd Exp $"; +__RCSID("$NetBSD: sysconf.c,v 1.4 1997/07/13 19:32:15 christos Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -68,7 +69,6 @@ long sysconf(name) int name; { - struct clockinfo clk; struct rlimit rl; size_t len; int mib[2], value;