dxx-rebirth/misc/errtest.c
Bradley Bell 9bd1ba7c47 This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.
2001-01-19 03:30:16 +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);
}
ÿ