]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
rename: s/verify_dcl/verify_decl/
authorJim Meyering <jim@meyering.net>
Mon, 4 Jul 2005 17:39:48 +0000 (17:39 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 4 Jul 2005 17:39:48 +0000 (17:39 +0000)
lib/verify.h

index 013ed84f8e5ea433295e0a31f333680f1aeef8d7..b86acaea900de526a4b10a229902bfea60b992f0 100644 (file)
 #ifndef VERIFY_H
 # define VERIFY_H 1
 
-# ifndef verify_dcl
+# ifndef verify_decl
 #  define GL_CONCAT0(x, y) x##y
 #  define GL_CONCAT(x, y) GL_CONCAT0 (x, y)
 
 /* Verify requirement, R, at compile-time, as a declaration.
    The implementation uses a struct declaration whose name includes the
    expansion of __LINE__, so there is a small chance that two uses of
-   verify_dcl from different files will end up colliding (for example,
-   f.c includes f.h and verify_dcl is used on the same line in each).  */
-#  define verify_dcl(R) \
+   verify_decl from different files will end up colliding (for example,
+   f.c includes f.h and verify_decl is used on the same line in each).  */
+#  define verify_decl(R) \
     struct GL_CONCAT (ct_assert_, __LINE__) { char a[(R) ? 1 : -1]; }
 # endif
 
 /* Verify requirement, R, at compile-time, as an expression.
-   Unlike assert, there is no run-time overhead.  Unlike verify_dcl,
+   Unlike assert, there is no run-time overhead.  Unlike verify_decl,
    above, there is no risk of collision, since there is no declared name.
    This macro may be used in some contexts where the other may not, and
    vice versa.  Return void.  */