crtend.c revision 1.2
1/*	$OpenBSD: crtend.c,v 1.2 2002/02/16 21:27:20 millert Exp $	*/
2/*	$NetBSD: crtend.c,v 1.1 1996/09/12 16:59:04 cgd Exp $	*/
3
4#ifndef ECOFF_COMPAT
5
6#include <sys/cdefs.h>
7
8static void (*__CTOR_LIST__[1])(void)
9    __attribute__((section(".ctors"))) = { (void *)0 };		/* XXX */
10static void (*__DTOR_LIST__[1])(void)
11    __attribute__((section(".dtors"))) = { (void *)0 };		/* XXX */
12
13#endif /* !ECOFF_COMPAT */
14