oksh-noxz

[fork] Portable OpenBSD ksh, based on the Public Domain Korn Shell (pdksh).
git clone https://noxz.tech/git/oksh-noxz.git
oksh-noxz

commit: 84d9719a8a451f16ed1d658bcaeba83f5f259b3b
parent: 0ba5429ed8ac1883d91add8297dfe85943003453
author: Brian Callahan <bcallah@openbsd.org>
date:   Sun, 7 Jan 2018 19:13:27 -0500
Fix includes in history.c
Mhistory.c5+++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/history.c b/history.c
@@ -21,14 +21,15 @@
 #include <stdio.h>
 #include <string.h>
 #include <unistd.h>
+
+#include "sh.h"
+
 #if defined(NEED_STRAVIS) || defined(NEED_STRUNVIS)
 #include "vis.h"
 #else
 #include <vis.h>
 #endif
 
-#include "sh.h"
-
 #ifdef HISTORY
 
 static void	history_write(void);