abort.c 224 B

12345678
  1. #include <stdlib.h>
  2. /* Test if the correct error code is propagated on a signal-induced exit. This should report 134
  3. * (128 + 6 where 6 is SIGABRT) as its return code. */
  4. int main(int argc, char* arvg[]) {
  5. abort();
  6. }