]> granicus.if.org Git - sudo/commitdiff
replaced #elif with #else #if constructs for ancient C compilers
authorTodd C. Miller <Todd.Miller@courtesan.com>
Sun, 2 Jul 1995 00:41:33 +0000 (00:41 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Sun, 2 Jul 1995 00:41:33 +0000 (00:41 +0000)
insults.h

index 1a7283059697047b9ec7b0fcb12b3b81a36a3f8c..51d4fc3b1ec7870f3c9017adf62000bbc8f48a57 100644 (file)
--- a/insults.h
+++ b/insults.h
  * Choose a set of insults, the default is to use the insults from
  * "sudo classic" (in the original edition of the Sys Admin book).
  */
-#if defined(HAL)
-#include "ins_2001.h"
-#elif defined(GOONS)
-#include "ins_goons.h"
+#ifdef HAL
+#  include "ins_2001.h"
 #else
-#include "ins_classic.h"
-#endif
+#  ifdef GOONS
+#    include "ins_goons.h"
+#  else
+#    include "ins_classic.h"
+#  endif /* GOONS */
+#endif /* HAL */
 
 /*
  * return a pseudo-random insult.