From db1e5ef53cd3f734816de5e1c0c08c6f250af528 Mon Sep 17 00:00:00 2001 From: Roland Illig Date: Tue, 5 Jul 2005 20:50:02 +0000 Subject: [PATCH] Added an "inline" specifier to str_unconst_inlined. --- src/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index 10ff5b00a..d38e3d5b2 100644 --- a/src/util.h +++ b/src/util.h @@ -8,7 +8,7 @@ * about the "const" modifier. The return value of this function * MUST NOT be modified. */ #ifdef INLINE_STR_UNCONST -static char *str_unconst_inlined (const char *s) +static inline char *str_unconst_inlined (const char *s) { return (char *) s; }