Skip to content

Commit

Permalink
chore: update test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
magic-akari committed Sep 20, 2024
1 parent 1ff7ac7 commit 130c1c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_data/main.c.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1753,11 +1753,11 @@ static const JSMallocFunctions def_malloc_funcs = {
#if defined(__APPLE__)
malloc_size,
#elif defined(_WIN32)
(size_t(*)(const void *))_msize,
(size_t (*)(const void *))_msize,
#elif defined(EMSCRIPTEN)
NULL,
#elif defined(__linux__)
(size_t(*)(const void *))malloc_usable_size,
(size_t (*)(const void *))malloc_usable_size,
#else
/* change this to `NULL,` if compilation fails */
malloc_usable_size,
Expand Down

0 comments on commit 130c1c2

Please sign in to comment.