Home | History | Annotate | Line # | Download | only in csu
h_initfini_array.c revision 1.1.2.2
      1  1.1.2.2  pgoyette static int x = 1;
      2  1.1.2.2  pgoyette 
      3  1.1.2.2  pgoyette static void
      4  1.1.2.2  pgoyette foo(void)
      5  1.1.2.2  pgoyette {
      6  1.1.2.2  pgoyette 	x = 0;
      7  1.1.2.2  pgoyette }
      8  1.1.2.2  pgoyette 
      9  1.1.2.2  pgoyette static void (*fp) (void) __attribute__((__section__(".init_array"), __used__)) =
     10  1.1.2.2  pgoyette     foo;
     11  1.1.2.2  pgoyette 
     12  1.1.2.2  pgoyette int
     13  1.1.2.2  pgoyette main(void)
     14  1.1.2.2  pgoyette {
     15  1.1.2.2  pgoyette 	return x;
     16  1.1.2.2  pgoyette }
     17