5 /* only supported by gcc 3.4 or later */
6 #define __ctor_data __attribute__ ((constructor) (100))
7 #define __ctor_board __attribute__ ((constructor) (200))
9 #define __ctor_data __attribute__ ((constructor))
10 #define __ctor_board __attribute__ ((constructor))
13 /* iterate over list of constructor functions and call each element */
14 void do_global_ctors(const char *ctors_start
, const char *ctors_end
);