Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
emscripten-core
Edit Copy
Star
GitHub Repository:
emscripten-core/emscripten
Path:
blob/main/test/codesize/mem.c
6
1
7
5
views
1
#include <stdlib.h>
2
3
int
main
(
int
argc
,
char
*
*
argv
)
{
4
return
(
int
)
(
long
)
malloc
(
argc
)
;
5
}
6
7