aboutsummaryrefslogtreecommitdiff
path: root/editors/awk.c
diff options
context:
space:
mode:
Diffstat (limited to 'editors/awk.c')
-rw-r--r--editors/awk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/awk.c b/editors/awk.c
index 9d306bf5f..90ba64348 100644
--- a/editors/awk.c
+++ b/editors/awk.c
@@ -677,7 +677,7 @@ static char nextchar(char **s)
677 return c; 677 return c;
678} 678}
679 679
680static int ATTRIBUTE_ALWAYS_INLINE isalnum_(int c) 680static int ALWAYS_INLINE isalnum_(int c)
681{ 681{
682 return (isalnum(c) || c == '_'); 682 return (isalnum(c) || c == '_');
683} 683}