exit.c 221 B

123456789101112
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. exit(code)
  7. {
  8. _cleanup() ;
  9. _exit(code) ;
  10. }