crtendS.c revision 1.1
1/*	$OpenBSD: crtendS.c,v 1.1 2001/05/28 21:38:13 drahn Exp $	*/
2/*	$NetBSD: crtend.c,v 1.1 1997/04/16 19:38:24 thorpej Exp $	*/
3
4#include <sys/cdefs.h>
5
6static void (*__CTOR_LIST__[1]) __P((void))
7    __attribute__((section(".ctors"))) = { (void *)0 };		/* XXX */
8static void (*__DTOR_LIST__[1]) __P((void))
9    __attribute__((section(".dtors"))) = { (void *)0 };		/* XXX */
10