projects
/
btb
/
d2x.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
added new arg and printfs for mouse driver problems (d1x r1.2, r1.2)
[btb/d2x.git]
/
misc
/
errtest.c
1
2
#define DEBUG_ON 1
3
4
#include <stdio.h>
5
6
#include "error.h"
7
8
main(int argc,char **argv)
9
{
10
error_init("Thank-you for running ERRTEST!");
11
12
Assert(argc!=0);
13
// Assert(argc==5);
14
15
Error("test of error, argc=%d, argv=%x",argc,argv);
16
}
17
18
ΓΏ