<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- a/fileio.c
+++ b/fileio.c
@@ -23,6 +23,10 @@
 #include &lt;string.h&gt;
 #include &lt;unistd.h&gt;
 
+#ifndef DEFFILEMODE
+#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
+#endif
+
 #include "def.h"
 #include "kbd.h"
 #include "pathnames.h"
</pre></body></html>