rel.c 201 B

123456789
  1. static int seven = 7;
  2. static int *__attribute__((section("auto"))) auto_10 = &seven;
  3. int
  4. eight (void)
  5. {
  6. extern int *__start_auto[], *__stop_auto[];
  7. return *auto_10 + __stop_auto - __start_auto;
  8. }