Module Name: src
Committed By: dholland
Date: Mon Aug 22 00:33:16 UTC 2011
Modified Files:
src/tests/lib/libc/stdio: t_fmemopen.c
src/tests/lib/libc/sys: t_getrusage.c t_setrlimit.c
Log Message:
Requires stdint.h.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/stdio/t_fmemopen.c
cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/sys/t_getrusage.c \
src/tests/lib/libc/sys/t_setrlimit.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/lib/libc/stdio/t_fmemopen.c
diff -u src/tests/lib/libc/stdio/t_fmemopen.c:1.2 src/tests/lib/libc/stdio/t_fmemopen.c:1.3
--- src/tests/lib/libc/stdio/t_fmemopen.c:1.2 Wed Nov 3 16:10:22 2010
+++ src/tests/lib/libc/stdio/t_fmemopen.c Mon Aug 22 00:33:16 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: t_fmemopen.c,v 1.2 2010/11/03 16:10:22 christos Exp $ */
+/* $NetBSD: t_fmemopen.c,v 1.3 2011/08/22 00:33:16 dholland Exp $ */
/*-
* Copyright (c)2010 Takehiko NOZAKI,
@@ -50,6 +50,7 @@
#endif
#include <errno.h>
+#include <stdint.h>
#include <stdio.h>
#include <limits.h>
#include <stdlib.h>
Index: src/tests/lib/libc/sys/t_getrusage.c
diff -u src/tests/lib/libc/sys/t_getrusage.c:1.1 src/tests/lib/libc/sys/t_getrusage.c:1.2
--- src/tests/lib/libc/sys/t_getrusage.c:1.1 Thu Jul 7 06:57:53 2011
+++ src/tests/lib/libc/sys/t_getrusage.c Mon Aug 22 00:33:16 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: t_getrusage.c,v 1.1 2011/07/07 06:57:53 jruoho Exp $ */
+/* $NetBSD: t_getrusage.c,v 1.2 2011/08/22 00:33:16 dholland Exp $ */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: t_getrusage.c,v 1.1 2011/07/07 06:57:53 jruoho Exp $");
+__RCSID("$NetBSD: t_getrusage.c,v 1.2 2011/08/22 00:33:16 dholland Exp $");
#include <sys/resource.h>
#include <sys/time.h>
@@ -38,6 +38,7 @@
#include <errno.h>
#include <limits.h>
#include <signal.h>
+#include <stdint.h>
#include <string.h>
static void work(void);
Index: src/tests/lib/libc/sys/t_setrlimit.c
diff -u src/tests/lib/libc/sys/t_setrlimit.c:1.1 src/tests/lib/libc/sys/t_setrlimit.c:1.2
--- src/tests/lib/libc/sys/t_setrlimit.c:1.1 Thu Jul 7 06:57:54 2011
+++ src/tests/lib/libc/sys/t_setrlimit.c Mon Aug 22 00:33:16 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: t_setrlimit.c,v 1.1 2011/07/07 06:57:54 jruoho Exp $ */
+/* $NetBSD: t_setrlimit.c,v 1.2 2011/08/22 00:33:16 dholland Exp $ */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: t_setrlimit.c,v 1.1 2011/07/07 06:57:54 jruoho Exp $");
+__RCSID("$NetBSD: t_setrlimit.c,v 1.2 2011/08/22 00:33:16 dholland Exp $");
#include <sys/resource.h>
#include <sys/mman.h>
@@ -40,6 +40,7 @@
#include <fcntl.h>
#include <limits.h>
#include <signal.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>