home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / source / radsrc22 / src / common / quit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-12  |  212 b   |  12 lines

  1. /* Copyright (c) 1991 Regents of the University of California */
  2.  
  3. #ifndef lint
  4. static char SCCSid[] = "@(#)quit.c 2.1 11/12/91 LBL";
  5. #endif
  6.  
  7. quit(code)            /* quit program */
  8. int  code;
  9. {
  10.     exit(code);
  11. }
  12.