Put inline declaration before return type

gcc -Wextra complains that the other way around is obsolescent, and
this was the only place where it was written in this order.
This commit is contained in:
Peter Eisentraut 2011-07-19 07:57:38 +03:00
parent 30f854537d
commit bf6be7af25
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ getcode(char c)
#define NOGHTOF(c) (getcode(c) & 16) /* BDH */
/* Faster than memcmp(), for this use case. */
static bool inline
static inline bool
rest_of_char_same(const char *s1, const char *s2, int len)
{
while (len > 0)