mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
The tests are failing in a strange way, with the error message 'corrupted top size'. I don't know what it means, and it seems to be caused by a call to printf() within 'test_bytecode.c'. I need a break, as this is making me dizzy.
9 lines
268 B
C
9 lines
268 B
C
#include "toy_common.h"
|
|
|
|
//defined separately, as compilation can take several seconds, invalidating the comparisons of the given macros
|
|
static const char* build = __DATE__ " " __TIME__ ", Toy branch 'dev'";
|
|
|
|
const char* Toy_private_version_build() {
|
|
return build;
|
|
}
|