From a607c20a94abea27801cfced37adbb4ff2b78ffb Mon Sep 17 00:00:00 2001 From: Jeff Lenk Date: Sun, 8 Jun 2014 16:06:32 -0500 Subject: [PATCH] windows fix for a0e9ddf58943171a9031159919e99ef20147a11e --- libs/esl/src/include/esl_config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/esl/src/include/esl_config.h b/libs/esl/src/include/esl_config.h index 34c67ca219..03bbe9719b 100644 --- a/libs/esl/src/include/esl_config.h +++ b/libs/esl/src/include/esl_config.h @@ -81,7 +81,7 @@ extern "C" { \param expr a string expression \return true or false */ -static inline int esl_true(const char *expr) { +static __inline__ int esl_true(const char *expr) { return (expr && (!strcasecmp(expr, "yes") || !strcasecmp(expr, "on") || !strcasecmp(expr, "true") @@ -96,7 +96,7 @@ static inline int esl_true(const char *expr) { \param expr a string expression \return true or false */ -static inline int esl_false(const char *expr) { +static __inline__ int esl_false(const char *expr) { return (expr && (!strcasecmp(expr, "no") || !strcasecmp(expr, "off") || !strcasecmp(expr, "false")