OSDN Git Service

最初のコミット。sample1が通る。
[uzume/uzume_bfin.git] / uzume_prototype / kernel / config / blackfin / cpu_crtend.c
1
2 typedef void (*fptr)(void);
3
4 /*
5  * ctor_list_endとdtor_list_endはctor_listとdtor_listの番兵役である。必ず0で終わる。
6  */
7 static fptr ctor_list_end[1] __attribute__((section(".ctors"), used)) = { (fptr) 0 };
8 static fptr dtor_list_end[1] __attribute__((section(".dtors"), used)) = { (fptr) 0 };
9
10
11