summaryrefslogtreecommitdiff
path: root/lib/strnumcmp-in.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/strnumcmp-in.h')
-rw-r--r--lib/strnumcmp-in.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strnumcmp-in.h b/lib/strnumcmp-in.h
index 35d5ac095..e8a9d9f2b 100644
--- a/lib/strnumcmp-in.h
+++ b/lib/strnumcmp-in.h
@@ -34,7 +34,7 @@
- It's typically faster.
POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
isdigit unless it's important to use the locale's definition
- of `digit' even when the host does not conform to POSIX. */
+ of 'digit' even when the host does not conform to POSIX. */
# define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9)