start.c 105 B

12345678
  1. #include <stdlib.h>
  2. /* stub for archs that lack dynamic linker support */
  3. void _start()
  4. {
  5. _Exit(1);
  6. }