diff options
author | Gary Palter <palter@clozure.com> | 2020-11-28 23:01:17 -0500 |
---|---|---|
committer | Gary Palter <palter@clozure.com> | 2020-11-28 23:01:17 -0500 |
commit | 97bb6ccc9ed75f38e339728642a9154004a93647 (patch) | |
tree | 827f7348508d2abe15cea5de782f5c7454b1ff9a /lisp/math.c | |
parent | 420fa2a8a4dd7294d0b23696103d7887ae570e43 (diff) |
Minimal changes to build on Apple silicon (i.e., new Apple M1 Macs)
Diffstat (limited to 'lisp/math.c')
-rw-r--r-- | lisp/math.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/math.c b/lisp/math.c index bdca034..bba21cd 100644 --- a/lisp/math.c +++ b/lisp/math.c @@ -32,7 +32,7 @@ #include "lisp/math.h" #include "lisp/private.h" -#ifdef __UNIXOS2__ +#if defined(__UNIXOS2__) || defined(__arm64__) # define finite(x) isfinite(x) #endif |