diff options
author | Jim Meyering <jim@meyering.net> | 1996-12-18 03:28:09 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-12-18 03:28:09 +0000 |
commit | 859f8587f822517d64c7298cd61bc04218c280c1 (patch) | |
tree | 09e97eb1ee9bd2f84e23df6a81209735c58aa678 /lib | |
parent | 24e15328df1b2621d21de45f9fc4a892c5b58c55 (diff) | |
download | coreutils-859f8587f822517d64c7298cd61bc04218c280c1.tar.xz |
add blank line.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/getdate.y | 1 |
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. |