]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
cdefs: Fix some typos in comments.
authorBruno Haible <bruno@clisp.org>
Tue, 11 Nov 2025 19:04:29 +0000 (11:04 -0800)
committerCollin Funk <collin.funk1@gmail.com>
Tue, 11 Nov 2025 19:04:29 +0000 (11:04 -0800)
Reviewed-by: Collin Funk <collin.funk1@gmail.com>
misc/sys/cdefs.h

index f74671086e31c78d56fc1c512f570d59c852d45f..3e874282df016dfb37589535430a7d0df0fc7bcd 100644 (file)
 # define __attribute_artificial__ /* Ignore */
 #endif
 
-/* GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99
-   inline semantics, unless -fgnu89-inline is used.  Using __GNUC_STDC_INLINE__
-   or __GNUC_GNU_INLINE is not a good enough check for gcc because gcc versions
+/* GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99 inline
+   semantics, unless -fgnu89-inline is used.  Using __GNUC_STDC_INLINE__ or
+   __GNUC_GNU_INLINE__ is not a good enough check for gcc because gcc versions
    older than 4.3 may define these macros and still not guarantee GNU inlining
    semantics.
 
    clang++ identifies itself as gcc-4.2, but has support for GNU inlining
-   semantics, that can be checked for by using the __GNUC_STDC_INLINE_ and
+   semantics, that can be checked for by using the __GNUC_STDC_INLINE__ and
    __GNUC_GNU_INLINE__ macro definitions.  */
 #if (!defined __cplusplus || __GNUC_PREREQ (4,3) \
      || (defined __clang__ && (defined __GNUC_STDC_INLINE__ \