vers27d3.c 147 B

123456789101112131415161718192021
  1. extern void ref ();
  2. extern void foo ();
  3. void
  4. _start ()
  5. {
  6. foo ();
  7. ref ();
  8. }
  9. void
  10. __start ()
  11. {
  12. _start ();
  13. }
  14. void
  15. start ()
  16. {
  17. __start ();
  18. }