dxx-rebirth/d2x-rebirth/misc/errtest.c

18 lines
237 B
C
Raw Normal View History

2006-03-20 17:12:09 +00:00
#define DEBUG_ON 1
#include <stdio.h>
#include "dxxerror.h"
2006-03-20 17:12:09 +00:00
main(int argc,char **argv)
{
error_init("Thank-you for running ERRTEST!");
Assert(argc!=0);
// Assert(argc==5);
Error("test of error, argc=%d, argv=%x",argc,argv);
}
<EFBFBD>