home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 213b.lha / Flex / Flex2 / gnu.lib.src / memfull.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-14  |  128 b   |  13 lines

  1. /*
  2.  * memory full warning message
  3.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. void
  8. memory_full ()
  9. {
  10.   printf ("Memory exhausted.\n");
  11.   exit(1);
  12. }
  13.