]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(ISDIGIT, S_ISVTX, S_IXUGO): Comment fix.
authorJim Meyering <jim@meyering.net>
Wed, 16 Jan 2002 23:04:06 +0000 (23:04 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 16 Jan 2002 23:04:06 +0000 (23:04 +0000)
src/sys2.h

index df7ea2405a23a993cfd337aae37c073e025e263a..de7f6e28499421811b06ef758919f320897fc6af 100644 (file)
@@ -59,7 +59,7 @@
 # define S_ISGID 02000
 #endif
 
-/* S_ISVTX is a common extension to POSIX.1.  */
+/* S_ISVTX is a common extension to POSIX.  */
 #ifndef S_ISVTX
 # define S_ISVTX 01000
 #endif
 # define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
 #endif
 
-/* S_IXUGO is a common extension to POSIX.1.  */
+/* S_IXUGO is a common extension to POSIX.  */
 #if !S_IXUGO
 # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
 #endif
@@ -243,10 +243,9 @@ char *alloca ();
    - 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.
    - It's typically faster.
-   Posix 1003.2-1992 section 2.5.2.1 page 50 lines 1556-1558 says that
-   only '0' through '9' are digits.  Prefer ISDIGIT to ISDIGIT_LOCALE unless
-   it's important to use the locale's definition of `digit' even when the
-   host does not conform to Posix.  */
+   POSIX says that only '0' through '9' are digits.  Prefer ISDIGIT to
+   ISDIGIT_LOCALE unless it's important to use the locale's definition
+   of `digit' even when the host does not conform to POSIX.  */
 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
 
 #ifndef PARAMS