home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / glibc-1.06 / manual / examples / atexit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-19  |  158 b   |  16 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. void 
  5. bye (void)
  6. {
  7.   puts ("Goodbye, cruel world....");
  8. }
  9.  
  10. int
  11. main (void)
  12. {
  13.   atexit (bye);
  14.   exit (EXIT_SUCCESS);
  15. }
  16.