exit.c 89 B

12345678
  1. #include <lib.h>
  2. PUBLIC int exit(status)
  3. int status;
  4. {
  5. _cleanup();
  6. _exit(status);
  7. }