home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_09 / 8n09018a < prev    next >
Text File  |  1990-08-12  |  285b  |  17 lines

  1.  
  2. /* _Assert function
  3.  * copyright (c) 1990 by P.J. Plauger
  4.  */
  5. #include <assert.h>
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8.  
  9. /* print assertion message and abort */
  10. void _Assert(char *mesg)
  11.     {
  12.     fputs(mesg, stderr);
  13.     fputs(" -- assertion failed\n", stderr);
  14.     abort();
  15.     }
  16.  
  17.