Skip to content

Commit

Permalink
should fix win32 build
Browse files Browse the repository at this point in the history
  • Loading branch information
tkelman committed Apr 25, 2015
1 parent b7199b2 commit e42b31b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ static long system_page_size;

#elif defined(_OS_WINDOWS_) /* 32-bit OS is implicit here. */
#define malloc_a16(sz) _aligned_malloc((sz)?(sz):1, 16)
#define realloc_a16(p, sz, oldsz) _aligned_realloc((sz)?(sz):1, 16)
#define realloc_a16(p, sz, oldsz) _aligned_realloc((p), (sz)?(sz):1, 16)
#define free_a16(p) _aligned_free(p)

#else
Expand Down

0 comments on commit e42b31b

Please sign in to comment.