<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- configure.orig	2023-08-01 06:58:25
+++ configure	2023-08-01 07:04:20
@@ -3570,8 +3570,8 @@
   for (i = 0; i &lt; 256; i++)
     if (XOR (islower (i), ISLOWER (i))
 	|| toupper (i) != TOUPPER (i))
-      exit(2);
-  exit (0);
+      return (2);
+  return (0);
 }
 _ACEOF
 rm -f conftest$ac_exeext
--- Makefile.in.orig	2023-08-01 07:05:40
+++ Makefile.in	2023-08-01 07:10:27
@@ -271,7 +271,7 @@
 	echo '#include &lt;stdio.h&gt;' &gt;temp.c
 	echo 'int main(){printf(' &gt;&gt;temp.c
 	echo '"#define SQLITE_PTR_SZ %d",sizeof(char*));' &gt;&gt;temp.c
-	echo 'exit(0);}' &gt;&gt;temp.c
+	echo 'return (0);}' &gt;&gt;temp.c
 	$(BCC) -o temp temp.c
 	./temp &gt;config.h
 	echo &gt;&gt;config.h
--- tool/lemon.c.orig	2005-04-24 08:43:22
+++ tool/lemon.c	2023-08-01 07:15:04
@@ -11,6 +11,7 @@
 #include &lt;string.h&gt;
 #include &lt;ctype.h&gt;
 #include &lt;stdlib.h&gt;
+#include &lt;unistd.h&gt;
 
 #ifndef __WIN32__
 #   if defined(_WIN32) || defined(WIN32)
@@ -2710,7 +2711,6 @@ int modemask;
   char *pathlist;
   char *path,*cp;
   char c;
-  extern int access();
 
 #ifdef __WIN32__
   cp = strrchr(argv0,'\\');
</pre></body></html>