Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Requires stdint.h.



details:   https://anonhg.NetBSD.org/src/rev/4092724e7722
branches:  trunk
changeset: 768594:4092724e7722
user:      dholland <dholland%NetBSD.org@localhost>
date:      Mon Aug 22 00:33:16 2011 +0000

description:
Requires stdint.h.

diffstat:

 sys/external/bsd/acpica/dist/include/platform/acnetbsd.h |  3 ++-
 tests/lib/libc/stdio/t_fmemopen.c                        |  3 ++-
 tests/lib/libc/sys/t_getrusage.c                         |  5 +++--
 tests/lib/libc/sys/t_setrlimit.c                         |  5 +++--
 tests/lib/libpthread/t_join.c                            |  5 +++--
 5 files changed, 13 insertions(+), 8 deletions(-)

diffs (111 lines):

diff -r a43dabaa2530 -r 4092724e7722 sys/external/bsd/acpica/dist/include/platform/acnetbsd.h
--- a/sys/external/bsd/acpica/dist/include/platform/acnetbsd.h  Mon Aug 22 00:24:42 2011 +0000
+++ b/sys/external/bsd/acpica/dist/include/platform/acnetbsd.h  Mon Aug 22 00:33:16 2011 +0000
@@ -1,7 +1,7 @@
 /******************************************************************************
  *
  * Name: acnetbsd.h - OS specific defines, etc.
- *       $Revision: 1.7 $
+ *       $Revision: 1.8 $
  *
  *****************************************************************************/
 
@@ -126,6 +126,7 @@
 #else /* defined(_KERNEL) || defined(_STANDALONE) */
 
 #include <ctype.h>
+#include <stdint.h>
 
 /* Not building kernel code, so use libc */
 #define ACPI_USE_STANDARD_HEADERS
diff -r a43dabaa2530 -r 4092724e7722 tests/lib/libc/stdio/t_fmemopen.c
--- a/tests/lib/libc/stdio/t_fmemopen.c Mon Aug 22 00:24:42 2011 +0000
+++ b/tests/lib/libc/stdio/t_fmemopen.c Mon Aug 22 00:33:16 2011 +0000
@@ -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>
diff -r a43dabaa2530 -r 4092724e7722 tests/lib/libc/sys/t_getrusage.c
--- a/tests/lib/libc/sys/t_getrusage.c  Mon Aug 22 00:24:42 2011 +0000
+++ b/tests/lib/libc/sys/t_getrusage.c  Mon Aug 22 00:33:16 2011 +0000
@@ -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);
diff -r a43dabaa2530 -r 4092724e7722 tests/lib/libc/sys/t_setrlimit.c
--- a/tests/lib/libc/sys/t_setrlimit.c  Mon Aug 22 00:24:42 2011 +0000
+++ b/tests/lib/libc/sys/t_setrlimit.c  Mon Aug 22 00:33:16 2011 +0000
@@ -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>
diff -r a43dabaa2530 -r 4092724e7722 tests/lib/libpthread/t_join.c
--- a/tests/lib/libpthread/t_join.c     Mon Aug 22 00:24:42 2011 +0000
+++ b/tests/lib/libpthread/t_join.c     Mon Aug 22 00:33:16 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: t_join.c,v 1.5 2010/11/30 18:38:54 joerg Exp $ */
+/* $NetBSD: t_join.c,v 1.6 2011/08/22 00:35:07 dholland Exp $ */
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -29,10 +29,11 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_join.c,v 1.5 2010/11/30 18:38:54 joerg Exp $");
+__RCSID("$NetBSD: t_join.c,v 1.6 2011/08/22 00:35:07 dholland Exp $");
 
 #include <errno.h>
 #include <pthread.h>
+#include <stdint.h>
 
 #include <atf-c.h>
 



Home | Main Index | Thread Index | Old Index