Added assert() to base library

also fixed regression in call()
This commit is contained in:
2020-12-27 13:36:17 -06:00
parent e7212b939d
commit 9012f9231b
5 changed files with 33 additions and 5 deletions

View File

@@ -7,8 +7,12 @@
#include <stdbool.h>
#include <stdio.h>
#include <assert.h>
//#define NAN_BOXXED
#define COSMOASSERT(x) assert(x)
// forward declare *most* stuff so our headers are cleaner
typedef struct CState CState;
typedef struct CChunk CChunk;