12半音階によるトーン生成
Rev. | 05c64c80a10b324b375562a6070f403efa4d0028 |
---|---|
크기 | 315 bytes |
Time | 2013-06-03 23:41:51 |
Author | suikan |
Log Message | 最初のコミット |
typedef void (*fptr)(void);
/*
* ctor_list_endとdtor_list_endはctor_listとdtor_listの番兵役である。必ず0で終わる。
*/
static fptr ctor_list_end[1] __attribute__((section(".ctors"), used)) = { (fptr) 0 };
static fptr dtor_list_end[1] __attribute__((section(".dtors"), used)) = { (fptr) 0 };