shithub: femtolisp

Download patch

ref: de6e8e4292e56df2ff007cc97faf58fcc031a070
parent: 497eb997f7c9d494b7ecd26c52dcac3361ef93e1
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Fri Jun 9 16:17:01 EDT 2023

read: fix UVLONG_MAX values (a bug in 9fronts libc has been fixed)

--- a/read.c
+++ b/read.c
@@ -9,7 +9,7 @@
 static int errno;
 #define VLONG_MAX ~(1LL<<63)
 #define VLONG_MIN (1LL<<63)
-#define UVLONG_MAX (1LL<<63)
+#define UVLONG_MAX (~0ULL)
 static mpint *mp_vlong_min, *mp_vlong_max, *mp_uvlong_max;
 #endif