From 46f5cd4fb9d8ac17a8646a2f0058b387867809e3 Mon Sep 17 00:00:00 2001 From: ad Date: Tue, 13 Nov 2007 15:33:55 +0000 Subject: [PATCH] - Make it pass lint. - Add RCSID. --- lib/libc/misc/initfini.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/libc/misc/initfini.c b/lib/libc/misc/initfini.c index fa7767a5aed5..d802ae2d7eee 100644 --- a/lib/libc/misc/initfini.c +++ b/lib/libc/misc/initfini.c @@ -1,4 +1,4 @@ -/* $NetBSD: initfini.c,v 1.1 2007/11/13 15:21:20 ad Exp $ */ +/* $NetBSD: initfini.c,v 1.2 2007/11/13 15:33:55 ad Exp $ */ /*- * Copyright (c) 2007 The NetBSD Foundation, Inc. @@ -36,11 +36,19 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include +__RCSID("$NetBSD: initfini.c,v 1.2 2007/11/13 15:33:55 ad Exp $"); + +#ifdef _LIBC +#include "namespace.h" +#endif + static void __libc_init(void) __attribute__((__constructor__, __used__)); void __guard_setup(void); void __libc_thr_init(void); +/* LINTED used */ static void __libc_init(void) {