Revert "Avoid compilation error on NetBSD 5.0."
authorEric Blake <ebb9@byu.net>
Wed, 12 Aug 2009 14:31:14 +0000 (08:31 -0600)
committerEric Blake <ebb9@byu.net>
Fri, 14 Aug 2009 12:45:04 +0000 (06:45 -0600)
This reverts commit b8521e81e705f88784e7a6709bcd6c5a3ea440e0.

tests/test-locale.c
tests/test-stdio.c
tests/test-stdlib.c
tests/test-string.c
tests/test-unistd.c

index 60a50a719d00f90e0b13a3a7c656a9573efb9103..625cc43d8446c3c6c1bd4bf0e4c57a4371417446 100644 (file)
@@ -35,7 +35,7 @@ int a[] =
 
 /* Check that NULL can be passed through varargs as a pointer type,
    per POSIX 2008.  */
-verify (sizeof (NULL) == sizeof (void *));
+verify (sizeof NULL == sizeof (void *));
 
 int
 main ()
index 41299e21598a8bc83763ddbb9c5fdf6493b74ea6..dcfe38dd515cf365fc8c55fbf19ed17177fa23d5 100644 (file)
@@ -27,7 +27,7 @@ int sk[] = { SEEK_CUR, SEEK_END, SEEK_SET };
 
 /* Check that NULL can be passed through varargs as a pointer type,
    per POSIX 2008.  */
-verify (sizeof (NULL) == sizeof (void *));
+verify (sizeof NULL == sizeof (void *));
 
 int
 main ()
index 711cfa631549b98cb0122362c06299ccd7745f8b..ae46ba16625479aeb9022489162bee441a57433b 100644 (file)
@@ -26,7 +26,7 @@ int exitcode;
 
 /* Check that NULL can be passed through varargs as a pointer type,
    per POSIX 2008.  */
-verify (sizeof (NULL) == sizeof (void *));
+verify (sizeof NULL == sizeof (void *));
 
 int
 main ()
index 688d0d31c3f6befe8c895bae713c141657629b40..fe53cd9b152a584e9559ff43b55a38106416dcad 100644 (file)
@@ -24,7 +24,7 @@
 
 /* Check that NULL can be passed through varargs as a pointer type,
    per POSIX 2008.  */
-verify (sizeof (NULL) == sizeof (void *));
+verify (sizeof NULL == sizeof (void *));
 
 int
 main ()
index e0b82918a95d5124ac3ca62697c0085ad60dfdf4..129367b4d7df989e1f31d1035e9ddc444d8a3169 100644 (file)
@@ -24,7 +24,7 @@
 
 /* Check that NULL can be passed through varargs as a pointer type,
    per POSIX 2008.  */
-verify (sizeof (NULL) == sizeof (void *));
+verify (sizeof NULL == sizeof (void *));
 
 /* Check that the various SEEK_* macros are defined.  */
 int sk[] = { SEEK_CUR, SEEK_END, SEEK_SET };