Ejemplo n.º 1
0
Archivo: fbrt0.c Proyecto: VlaBst6/fbc
	static void fb_hDoInit( void )
	{
		fb_hRtInit( );
	}
Ejemplo n.º 2
0
Archivo: fbrt0.c Proyecto: jofers/fbc
static void fb_hDoInit( void )
{
	/* the last to be defined, the first that will be called */
	fb_hRtInit( );
}
Ejemplo n.º 3
0
Archivo: fbrt0.c Proyecto: VlaBst6/fbc
	/* It seems like __attribute__((constructor(priority))) (or in general, ordering
	   ctors/dtors across modules) isn't supported on Darwin/MacOSX, so we just use
	   plain __attribute__((constructor)). */
	__attribute__((constructor)) static void fb_hDoInit( void )
	{
		fb_hRtInit( );
	}