Fixing test compilation

This commit is contained in:
Justin C. Miller
2018-09-05 20:17:29 -07:00
parent b93519e06f
commit bc26d7d01d

View File

@@ -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); }
}