#include #include "syscall.h" // Wasm doesn't have mmap! There's just a single linear memory block. long __syscall_madvise(long arg1, ...) { return 0; } long __syscall_mmap(long arg1, ...) { return -ENOSYS; } long __syscall_mremap(long arg1, ...) { return -ENOSYS; } long __syscall_munmap(long arg1, ...) { return 0; }