dxx-rebirth/misc/errtest.c
md2211 a0b4cac982 * Removed executable flag on most files
* Reverted value of SOUND_MAX_VOLUME
2007-09-21 19:06:05 +00:00

18 lines
234 B
C

#define DEBUG_ON 1
#include <stdio.h>
#include "error.h"
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);
}
ÿ