From: Todd C. Miller Date: Sat, 8 Dec 2001 19:42:32 +0000 (+0000) Subject: Don't need config.h or "#ifndef HAVE_STRERROR" wrapper. X-Git-Tag: SUDO_1_6_4~152 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=028a55fb23f6c629dad7b98d20471d5100bb0c56;p=sudo Don't need config.h or "#ifndef HAVE_STRERROR" wrapper. --- diff --git a/strerror.c b/strerror.c index 987b98d6f..ae0d5a88b 100644 --- a/strerror.c +++ b/strerror.c @@ -35,10 +35,6 @@ #include #include -#include "config.h" - -#ifndef HAVE_STRERROR - #ifndef lint static const char rcsid[] = "$Sudo$"; #endif /* lint */ @@ -58,5 +54,3 @@ strerror(n) else return("Unknown error"); } - -#endif /* HAVE_STRERROR */