From ff68bb147ca37f793d1b2600781be3d5f736aeae Mon Sep 17 00:00:00 2001 From: mrg Date: Tue, 17 Jul 2001 13:28:05 +0000 Subject: [PATCH] minor KNF --- lib/csu/common_elf/crtbegin.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/csu/common_elf/crtbegin.c b/lib/csu/common_elf/crtbegin.c index 125bbf3bf773..7751bb61f6b0 100644 --- a/lib/csu/common_elf/crtbegin.c +++ b/lib/csu/common_elf/crtbegin.c @@ -1,4 +1,4 @@ -/* $NetBSD: crtbegin.c,v 1.11 2001/05/11 22:44:15 ross Exp $ */ +/* $NetBSD: crtbegin.c,v 1.12 2001/07/17 13:28:05 mrg Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -104,6 +104,7 @@ void _init() { static int initialized = 0; + /* * Call global constructors. * Arrange to call global destructors at exit. @@ -118,6 +119,7 @@ _init() void _fini() { + /* * Call global destructors. */