summaryrefslogtreecommitdiff
path: root/lib/getdate.y
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-12-18 03:28:09 +0000
committerJim Meyering <jim@meyering.net>1996-12-18 03:28:09 +0000
commit859f8587f822517d64c7298cd61bc04218c280c1 (patch)
tree09e97eb1ee9bd2f84e23df6a81209735c58aa678 /lib/getdate.y
parent24e15328df1b2621d21de45f9fc4a892c5b58c55 (diff)
downloadcoreutils-859f8587f822517d64c7298cd61bc04218c280c1.tar.xz
add blank line.
Diffstat (limited to 'lib/getdate.y')
-rw-r--r--lib/getdate.y1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/getdate.y b/lib/getdate.y
index 9dcb93f7a..b81db9725 100644
--- a/lib/getdate.y
+++ b/lib/getdate.y
@@ -44,6 +44,7 @@
#define ISALPHA(c) (IN_CTYPE_DOMAIN (c) && isalpha (c))
#define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))
#define ISDIGIT_LOCALE(c) (IN_CTYPE_DOMAIN (c) && isdigit (c))
+
/* ISDIGIT differs from ISDIGIT_LOCALE, as follows:
- Its arg may be any int or unsigned int; it need not be an unsigned char.
- It's guaranteed to evaluate its argument exactly once.