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 9d306bf..90ba643 100644 --- a/editors/awk.c +++ b/editors/awk.c @@ -677,7 +677,7 @@ static char nextchar(char **s) return c; } -static int ATTRIBUTE_ALWAYS_INLINE isalnum_(int c) +static int ALWAYS_INLINE isalnum_(int c) { return (isalnum(c) || c == '_'); } |