summaryrefslogtreecommitdiffstats
path: root/lib/csu/crtend.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csu/crtend.c')
-rw-r--r--lib/csu/crtend.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/csu/crtend.c b/lib/csu/crtend.c
index a44627276a2..e81d17481f2 100644
--- a/lib/csu/crtend.c
+++ b/lib/csu/crtend.c
@@ -1,13 +1,13 @@
-/* $OpenBSD: crtend.c,v 1.1 2001/02/03 22:47:01 art Exp $ */
+/* $OpenBSD: crtend.c,v 1.2 2002/02/16 21:27:20 millert Exp $ */
/* $NetBSD: crtend.c,v 1.1 1996/09/12 16:59:04 cgd Exp $ */
#ifndef ECOFF_COMPAT
#include <sys/cdefs.h>
-static void (*__CTOR_LIST__[1]) __P((void))
+static void (*__CTOR_LIST__[1])(void)
__attribute__((section(".ctors"))) = { (void *)0 }; /* XXX */
-static void (*__DTOR_LIST__[1]) __P((void))
+static void (*__DTOR_LIST__[1])(void)
__attribute__((section(".dtors"))) = { (void *)0 }; /* XXX */
#endif /* !ECOFF_COMPAT */