home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d156 / flex.lha / Flex / Flex2 / gnu.lib.src / memfull.c < prev    next >
C/C++ Source or Header  |  1988-10-02  |  128b  |  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.