Windows CE port addition

This commit is contained in:
nethack.allison
2002-07-22 03:20:52 +00:00
parent 4957a7f5be
commit 0cc5b698d5
52 changed files with 106716 additions and 3 deletions

16
sys/wince/assert.h Normal file
View File

@@ -0,0 +1,16 @@
/***
*assert.h - define the assert macro
*
****/
#undef assert
#ifdef NDEBUG
#define assert(exp) ((void)0)
#else
#define assert(exp) (void)( (exp) || (panic("%s at %s line %ld", #exp, __FILE__,__LINE__), 1) )
#endif /* NDEBUG */