home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / NEWS / RADIANCE / SRC / COMMON / QUIT.C < prev    next >
Text File  |  1993-10-07  |  212b  |  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.