summaryrefslogtreecommitdiff
path: root/insults.h
diff options
context:
space:
mode:
authorTodd C. Miller <Todd.Miller@courtesan.com>1995-07-02 00:41:33 +0000
committerTodd C. Miller <Todd.Miller@courtesan.com>1995-07-02 00:41:33 +0000
commit5e9dd060cb99dd05a3ff9ab3e4f73a6cc6596016 (patch)
tree7b201e66dfa893109783ad5af6b8e5480d465f2d /insults.h
parent195c4ccaaad4d4dcdef3d9789f468fb67fb2144f (diff)
downloadsudo-5e9dd060cb99dd05a3ff9ab3e4f73a6cc6596016.tar.gz
replaced #elif with #else #if constructs for ancient C compilers
Diffstat (limited to 'insults.h')
-rw-r--r--insults.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/insults.h b/insults.h
index 1a7283059..51d4fc3b1 100644
--- a/insults.h
+++ b/insults.h
@@ -29,13 +29,15 @@
* 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.