crtend.c revision 1.3
1/*	$OpenBSD: crtend.c,v 1.3 2004/01/08 14:59:15 drahn Exp $	*/
2/*	$NetBSD: crtend.c,v 1.1 1996/09/12 16:59:04 cgd Exp $	*/
3
4#include <sys/cdefs.h>
5#include "md_init.h"
6
7static void (*__CTOR_LIST__[1])(void)
8    __attribute__((section(".ctors"))) = { (void *)0 };		/* XXX */
9static void (*__DTOR_LIST__[1])(void)
10    __attribute__((section(".dtors"))) = { (void *)0 };		/* XXX */
11
12MD_SECTION_EPILOGUE(".init");
13MD_SECTION_EPILOGUE(".fini");
14