# HG changeset patch # User Matti Hamalainen # Date 1456264867 -7200 # Node ID 14aaa9bf4ea52655a0597cf899f508e2d25e12a8 # Parent 2b58dd3f5e6c59eb51cf6db01176a50ea05330c7 No need to force inline this. diff -r 2b58dd3f5e6c -r 14aaa9bf4ea5 th_string.c --- a/th_string.c Tue Feb 23 23:10:57 2016 +0200 +++ b/th_string.c Wed Feb 24 00:01:07 2016 +0200 @@ -66,7 +66,7 @@ * See TH_TRIM_* in th_string.h. If the resulting string would be empty (length 0), * NULL is returned. */ -static inline char * th_strdup_trim_do(const char *src, size_t len, const int flags) +static char * th_strdup_trim_do(const char *src, size_t len, const int flags) { char *res; size_t start, end;