1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-19 10:15:48 +02:00

(VERIFY_EXPR): Undef and add a comment.

This commit is contained in:
Jim Meyering
2005-06-30 15:46:05 +00:00
parent b2915239d7
commit 4ff07ebe3c

View File

@@ -56,8 +56,10 @@ void *x2nrealloc (void *p, size_t *pn, size_t s);
void *xmemdup (void const *p, size_t s);
char *xstrdup (char const *str);
/* Verify a requirement at compile-time (unlike assert, which is runtime). */
# undef VERIFY_EXPR
# define VERIFY_EXPR(assertion) \
(void)((struct {char a[(assertion) ? 1 : -1]; } *) 0)
(void)((struct {char a[(assertion) ? 1 : -1]; } *) 0)
/* Using x2realloc (when appropriate) usually makes your code more
readable than using x2nrealloc, but it also makes it so your