From: Jeff Lenk Date: Sun, 8 Jun 2014 21:06:32 +0000 (-0500) Subject: windows fix for a0e9ddf58943171a9031159919e99ef20147a11e X-Git-Tag: v1.5.13~214 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a607c20a94abea27801cfced37adbb4ff2b78ffb;p=thirdparty%2Ffreeswitch.git windows fix for a0e9ddf58943171a9031159919e99ef20147a11e --- 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")