diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-26 23:19:19 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-26 23:19:19 +0000 |
commit | f7539bfedf7dae514e7853a18e325ee514445425 (patch) | |
tree | 5467dd2fd261b3defc9040e6c5623aa9673bcb2e /lib | |
parent | fdfc9f06b94a8558419e5a548d654c9869b7df79 (diff) |
boring protos
Diffstat (limited to 'lib')
-rw-r--r-- | lib/csu/crtbeginS.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/csu/crtbeginS.c b/lib/csu/crtbeginS.c index 74c21a888c9..5cf453f40bf 100644 --- a/lib/csu/crtbeginS.c +++ b/lib/csu/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 |