changeset 15341:e20383a4e296

* tests/test-sys_select.c (sigset_t): Test for it, too. Suggested by Bruno Haible.
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 05 Jul 2011 14:42:11 -0700
parents 03a50862ef09
children 2a17513766d8
files ChangeLog tests/test-sys_select.c
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-05  Paul Eggert  <eggert@cs.ucla.edu>
+
+	* tests/test-sys_select.c (sigset_t): Test for it, too.
+	Suggested by Bruno Haible.
+
 2011-07-05  Eric Blake  <eblake@redhat.com>
 
 	snprintf: guarantee %1$d, for libintl
--- a/tests/test-sys_select.c
+++ b/tests/test-sys_select.c
@@ -23,6 +23,9 @@
 /* Check that the 'struct timeval' type is defined.  */
 struct timeval t1;
 
+/* Check that sigset_t is defined.  */
+sigset_t t2;
+
 int
 main (void)
 {