Sha256: 54d641fd5e7a17e21b746c3ded65134ff63134c37d7b4f3668902929a941ccc4
Contents?: true
Size: 416 Bytes
Versions: 8
Compression:
Stored size: 416 Bytes
Contents
// Some stuff to patch up an emscripten-sdk build so it can be built natively (see nativize_llvm) #include <stdio.h> #include <stdlib.h> extern "C" { int *__errno() { static int e = 0; return &e; } void __assert_func(const char *file, int line, const char *assertt, const char *cond) { printf("assert-func: %s : %d : %s : %s\n", file, line, assertt, cond); abort(); } //struct _reent *_impure_ptr; }
Version data entries
8 entries across 8 versions & 1 rubygems