home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / assert / assert.c
Encoding:
C/C++ Source or Header  |  1990-05-30  |  263 b   |  21 lines

  1.  
  2. /*
  3.  *  ASSERT.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9. #include <assert.h>
  10.  
  11. void
  12. __FailedAssert(file, line)
  13. char *file;
  14. int line;
  15. {
  16.     fprintf(stderr, "Assertion Failed %s line %d\n", file, line);
  17.     abort();
  18. }
  19.  
  20.  
  21.