home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / flex.lzh / FLEX / FLEX2 / GNU.LIB.SRC / MEMFULL.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-16  |  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.