From ed94876a19354c03545152abbc8826a95bcadbdc Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Fri, 28 Apr 2000 03:56:27 +0000 Subject: [PATCH] missing ifndef ISC_STRING_H wrapper for body --- lib/isc/include/isc/string.h | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/isc/include/isc/string.h b/lib/isc/include/isc/string.h index 40182c4962..60d4a2c124 100644 --- a/lib/isc/include/isc/string.h +++ b/lib/isc/include/isc/string.h @@ -15,17 +15,24 @@ * SOFTWARE. */ +#ifndef ISC_STRING_H +#define ISC_STRING_H + #include -#include #include +#ifdef ISC_PLATFORM_NEEDSTRSEP +#include + ISC_LANG_BEGINDECLS -#ifdef ISC_PLATFORM_NEEDSTRSEP char * isc_strsep(char **stringp, const char *delim); + #define strsep isc_strsep -#endif ISC_LANG_ENDDECLS +#endif /* ISC_PLATFORM_NEEDSTRSEP */ + +#endif /* ISC_STRING_H */