flst / upstream /emscripten /test /codesize /mem_no_main.c
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
133 Bytes
#include <emscripten.h>
#include <stdlib.h>
int some_arg;
EMSCRIPTEN_KEEPALIVE
int foo() {
return (int)(long)malloc(some_arg);
}