Exemple #1
0
	static void fb_hDoInit( void )
	{
		fb_hRtInit( );
	}
Exemple #2
0
static void fb_hDoInit( void )
{
	/* the last to be defined, the first that will be called */
	fb_hRtInit( );
}
Exemple #3
0
	/* 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( );
	}