#include <stdint.h>
#include <threads.h>
#include "emscripten_internal.h"
thread_local uintptr_t __THREW__ = 0;
thread_local int __threwValue = 0;
void setThrew(uintptr_t threw, int value) {
if (__THREW__ == 0) {
__THREW__ = threw;
__threwValue = value;
}
}