<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Fix:

fileiter.cc:156:3: error: use of undeclared identifier 'abort'
sf-get.cc:51:17: error: use of undeclared identifier 'getenv'
sf-get2.cc:435:7: error: use of undeclared identifier 'getenv'
sf-get3.cc:111:29: error: use of undeclared identifier 'atoi'
--- src/fileiter.cc.orig	2019-05-07 06:40:13.000000000 -0500
+++ src/fileiter.cc	2024-05-06 17:48:43.000000000 -0500
@@ -27,6 +27,7 @@
 #include &lt;config.h&gt;
 
 #include &lt;cstdio&gt;
+#include &lt;cstdlib&gt;
 #include &lt;cstring&gt;
 #include &lt;string&gt;
 
--- src/sf-get.cc.orig	2019-05-07 06:40:13.000000000 -0500
+++ src/sf-get.cc	2024-05-06 17:27:10.000000000 -0500
@@ -28,6 +28,7 @@
 
 #include &lt;config.h&gt;
 
+#include &lt;cstdlib&gt;
 #include &lt;string&gt;
 using std::string;
 
--- src/sf-get2.cc.orig	2019-05-07 06:40:13.000000000 -0500
+++ src/sf-get2.cc	2024-05-06 18:18:55.000000000 -0500
@@ -28,6 +28,7 @@
 
 #include &lt;config.h&gt;
 
+#include &lt;cstdlib&gt;
 #include &lt;string&gt;
 #include &lt;ctype.h&gt;
 
--- src/sf-get3.cc.orig	2019-05-07 06:40:13.000000000 -0500
+++ src/sf-get3.cc	2024-05-06 17:27:35.000000000 -0500
@@ -28,6 +28,8 @@
 
 #include &lt;config.h&gt;
 
+#include &lt;cstdlib&gt;
+
 #include "cssc.h"
 #include "sccsfile.h"
 #include "seqstate.h"
</pre></body></html>