1
1

Added an "inline" specifier to str_unconst_inlined.

Этот коммит содержится в:
Roland Illig 2005-07-05 20:50:02 +00:00
родитель a041ed48a9
Коммит db1e5ef53c

Просмотреть файл

@ -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;
}