From 001cbba2837a4de3704788ba7a059da69a2d0bf2 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sun, 2 Jul 1995 00:41:33 +0000 Subject: [PATCH] replaced #elif with #else #if constructs for ancient C compilers --- insults.h | 14 ++++++++------ 1 file 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. -- 2.40.0