OSDN Git Service

Sメーター周りを修正
[trx-305dsp/dsp.git] / trx305 / 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