diff options
Diffstat (limited to 'editors/awk.c')
-rw-r--r-- | editors/awk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/awk.c b/editors/awk.c index 5d43e1d9e..049673df3 100644 --- a/editors/awk.c +++ b/editors/awk.c @@ -593,7 +593,7 @@ static char nextchar(char **s) return c; } -static inline int isalnum_(int c) +static int ATTRIBUTE_ALWAYS_INLINE isalnum_(int c) { return (isalnum(c) || c == '_'); } |