home *** CD-ROM | disk | FTP | other *** search
/ DTP Toolbox / DTPToolbox.iso / utilities / archiveutils / wmf.lha / src / debug.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-22  |  155 b   |  9 lines

  1. #include <stdio.h>
  2.  
  3. int _assert(char *exp, char *file, int line)
  4. {
  5.   printf("assertion failed %s\nmodule: %s line %d\n",exp,file,line);
  6.   CleanExit(1);
  7. }
  8.  
  9.