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: f086b166caf49f6db16aa533024c09c52bae37a9 parent: a2123b34aa4468be03ee9f4ee861df1fe0665136 author: case <case@capsulecorp.org> date: Mon, 20 Feb 2017 23:07:13 -0500
fix linux with queue.h
M | emacs.c | 4 | ++++ |
diff --git a/emacs.c b/emacs.c @@ -16,7 +16,11 @@ #include "sh.h" #include <sys/stat.h> +#ifdef __linux__ +#include "portable/linux/queue.h" +#else #include <sys/queue.h> +#endif #include <ctype.h> #include <locale.h> #include "edit.h"