mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
Fixing test compilation
This commit is contained in:
@@ -1,2 +1,9 @@
|
||||
#define CATCH_CONFIG_MAIN
|
||||
#include "catch.hpp"
|
||||
|
||||
// kutil malloc/free stubs
|
||||
#include <malloc.h>
|
||||
namespace kutil {
|
||||
void * malloc(size_t n) { return ::malloc(n); }
|
||||
void free(void *p) { ::free(p); }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user