OSDN Git Service

r288@cf-ppc-macosx: monabuilder | 2008-12-07 13:17:34 +0900
[pf3gnuchains/pf3gnuchains3x.git] / newlib / libc / sys / sysnecv850 / crt1.c
1 void __main ()
2 {
3   static int initialized;
4   if (! initialized)
5     {
6       typedef void (*pfunc) ();
7       extern pfunc __ctors[];
8       extern pfunc __ctors_end[];
9       pfunc *p;
10
11       initialized = 1;
12       for (p = __ctors_end; p > __ctors; )
13         (*--p) ();
14
15     }
16 }