changeset 12282:533256aed7f2

test-getgroups: avoid compilation failure * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
author Jim Meyering <meyering@redhat.com>
date Fri, 13 Nov 2009 16:15:23 +0100
parents 9c11ef292284
children b49120535c36
files ChangeLog tests/test-getgroups.c
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-11-13  Jim Meyering  <meyering@redhat.com>
+
+	test-getgroups: avoid compilation failure
+	* tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
+
 2009-11-13  Eric Blake  <ebb9@byu.net>
 
 	mgetgroups: new module, taken from coreutils
--- a/tests/test-getgroups.c
+++ b/tests/test-getgroups.c
@@ -23,6 +23,7 @@
 #include <errno.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <stdint.h>
 
 #define ASSERT(expr) \
   do                                                                         \