1 2 3 4 5 6 7 8 9 10 11 12
// Stub stdio.c for tree-sitter WASM builds #include <stdarg.h> typedef struct {} FILE; FILE _stderr; FILE *stderr = &_stderr; int fprintf(FILE* stream, const char* format, ...) { (void)stream; (void)format; return 0; }