Skip to content

Commit 01fdccc

Browse files
committed
use__SIZEOF_SIZE_T__ to check 64bit machine
1 parent 9ba1623 commit 01fdccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lisp/c/eus.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/****************************************************************/
1010

1111

12-
#if (alpha || IRIX6 || x86_64 || aarch64)
12+
#if (__SIZEOF_SIZE_T__ == 8) || (alpha || IRIX6 || x86_64 || aarch64 || ppc64le)
1313
#define WORD_SIZE 64
1414
#else
1515
#define WORD_SIZE 32

0 commit comments

Comments
 (0)