Skip to content

Commit dc27950

Browse files
committed
FIX: using <sys/malloc.h> instead of <malloc.h> when compiling to 64bit macOS version
1 parent e46effe commit dc27950

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/u-rsa.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
#include <time.h>
4242
#include <stdlib.h>
4343

44-
#if defined(TO_OSXI) || defined(TO_OSX)
44+
#if defined(TO_OSX_X64) || defined(TO_OSXI) || defined(TO_OSX)
4545
#include <sys/malloc.h>
4646
#else
4747
#include <malloc.h>

0 commit comments

Comments
 (0)