chore(runtime-c-api) Move .wasm files into the assets directory.

This commit is contained in:
Ivan Enderlin
2019-03-27 09:42:56 +01:00
parent c101498aa9
commit 5661540097
12 changed files with 11 additions and 11 deletions

View File

@ -6,7 +6,7 @@
int main()
{
// Read the wasm file bytes
FILE *file = fopen("sum.wasm", "r");
FILE *file = fopen("assets/sum.wasm", "r");
fseek(file, 0, SEEK_END);
long len = ftell(file);
uint8_t *bytes = malloc(len);