Initial revision

This commit is contained in:
sater
1984-05-17 13:42:36 +00:00
commit c3f82d4864
30 changed files with 4439 additions and 0 deletions

5
util/opt/assert.h Normal file
View File

@@ -0,0 +1,5 @@
#ifndef NDEBUG
#define assert(x) if(!(x)) badassertion(__FILE__,__LINE__)
#else
#define assert(x) /* nothing */
#endif