exit.c 331 B

12345678910111213
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. /* $Header$ */
  6. /* called by /lib/crt0.o; needed to suppress the loading of the
  7. standard exit() which performs unnecessary cleanup actions
  8. */
  9. exit(n)
  10. {
  11. _exit(n);
  12. }