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: bedf4ef8ceb512f485772a088217ddfa9abc184f
parent: dc2491e3910fe23603eb3a1b49b29c4f44ba19c5
author: Brian Callahan <ibara@users.noreply.github.com>
date:   Wed, 3 Mar 2021 10:07:06 -0500
Code consistency

#ifdef -> #if defined()bedf4ef8ceb512f485772a088217ddfa9abc184f
 issetugid.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/issetugid.c b/issetugid.c
@@ -16,7 +16,7 @@
 
 #include "pconfig.h"
 
-#ifdef HAVE_ISSETUGID
+#if defined(HAVE_ISSETUGID)
 #include <unistd.h>
 #elif defined(HAVE_GETAUXVAL)
 #include <sys/auxv.h>
@@ -26,7 +26,7 @@ int
 oksh_issetugid(void)
 {
 
-#ifdef HAVE_ISSETUGID
+#if defined(HAVE_ISSETUGID)
 	return issetugid();
 #elif defined(HAVE_GETAUXVAL)
 	return (int) getauxval(AT_SECURE);