From 720a424f72069e496573259d22875c0c5fb996ec Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Thu, 26 Jun 2003 23:19:19 +0000 Subject: boring protos --- lib/csu/common_elf/crtbeginS.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/csu') diff --git a/lib/csu/common_elf/crtbeginS.c b/lib/csu/common_elf/crtbeginS.c index 74c21a888c9..5cf453f40bf 100644 --- a/lib/csu/common_elf/crtbeginS.c +++ b/lib/csu/common_elf/crtbeginS.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crtbeginS.c,v 1.2 2002/02/16 21:27:20 millert Exp $ */ +/* $OpenBSD: crtbeginS.c,v 1.3 2003/06/26 23:19:18 deraadt Exp $ */ /* $NetBSD: crtbegin.c,v 1.1 1996/09/12 16:59:03 cgd Exp $ */ /* @@ -51,7 +51,7 @@ static void __dtors(void); static void __ctors(void); void -__dtors() +__dtors(void) { unsigned long i = (unsigned long) __DTOR_LIST__[0]; void (**p)(void); @@ -68,7 +68,7 @@ __dtors() } static void -__ctors() +__ctors(void) { void (**p)(void) = __CTOR_LIST__ + 1; @@ -78,7 +78,7 @@ __ctors() } void -_init() +_init(void) { static int initialized = 0; @@ -93,7 +93,7 @@ _init() } void -_fini() +_fini(void) { /* * since the _init() function sets up the destructors to be called -- cgit v1.2.3