From 78179fcb8afa72cc7e437fc5437d052c39044261 Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Thu, 5 Dec 2002 00:55:26 +0000 Subject: [PATCH] Add #include guards. --- lib/internal.h | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/lib/internal.h b/lib/internal.h index f549691..fcbb30f 100644 --- a/lib/internal.h +++ b/lib/internal.h @@ -22,15 +22,31 @@ #ifndef _INTERNAL_H #define _INTERNAL_H +#if HAVE_CONFIG_H +#include "config.h" +#endif + +#ifdef STDC_HEADERS +#include #include +#include #include -#include +#endif + +#if HAVE_STRING_H +# if !STDC_HEADERS && HAVE_MEMORY_H +# include +# endif +# include +#endif +#if HAVE_STRINGS_H +# include +#endif #include -#include "config.h" -#include "gsasl.h" #include "gettext.h" +#include "gsasl.h" #ifdef ENABLE_NLS extern char *_gsasl_gettext (const char *str); -- 2.11.4.GIT