strings.h: s/inline/__inline__/

As suggested by http://gcc.gnu.org/onlinedocs/gcc-4.2.4/gcc/Inline.html

This should fix building things like NBDkit.

Change-Id: I1da7fc140dd8451ff2ddaf599fe4e951401d0cb3
Reviewed-on: https://review.haiku-os.org/c/haiku/+/2794
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>
This commit is contained in:
François Revol 2020-05-24 03:54:47 +02:00 committed by Axel Dörfler
parent 8d3f6fce57
commit 8a9a366fef
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
extern "C" {
#endif
static inline int ffs(int i) { return __builtin_ffs(i); }
static __inline__ int ffs(int i) { return __builtin_ffs(i); }
extern int strcasecmp(const char *string1, const char *string2);
extern int strncasecmp(const char *string1, const char *string2,