windows fix for a0e9ddf58943171a9031159919e99ef20147a11e

This commit is contained in:
Jeff Lenk 2014-06-08 16:06:32 -05:00
parent 49ee6781a5
commit a607c20a94

View File

@ -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")