[Glibc-bsd-commits] r4072 - in trunk/freebsd-buildutils/debian: . local/include/sys

Robert Millan rmh at alioth.debian.org
Sat Feb 4 13:10:14 UTC 2012


Author: rmh
Date: 2012-02-04 13:10:13 +0000 (Sat, 04 Feb 2012)
New Revision: 4072

Modified:
   trunk/freebsd-buildutils/debian/changelog
   trunk/freebsd-buildutils/debian/local/include/sys/stdint.h
Log:
Add implicit includes to sys/stdint.h.

Modified: trunk/freebsd-buildutils/debian/changelog
===================================================================
--- trunk/freebsd-buildutils/debian/changelog	2012-02-04 13:07:07 UTC (rev 4071)
+++ trunk/freebsd-buildutils/debian/changelog	2012-02-04 13:10:13 UTC (rev 4072)
@@ -1,3 +1,9 @@
+freebsd-buildutils (9.0-5) UNRELEASED; urgency=low
+
+  * Add implicit includes to sys/stdint.h.
+
+ -- Robert Millan <rmh at debian.org>  Sat, 04 Feb 2012 14:10:02 +0100
+
 freebsd-buildutils (9.0-4) unstable; urgency=low
 
   * FreeBSD code expects that <sys/param.h> implicitly defines SIG*

Modified: trunk/freebsd-buildutils/debian/local/include/sys/stdint.h
===================================================================
--- trunk/freebsd-buildutils/debian/local/include/sys/stdint.h	2012-02-04 13:07:07 UTC (rev 4071)
+++ trunk/freebsd-buildutils/debian/local/include/sys/stdint.h	2012-02-04 13:10:13 UTC (rev 4072)
@@ -1 +1,14 @@
 #include_next <stdint.h>
+
+#ifndef _SYS_STDINT_H_
+#define _SYS_STDINT_H_
+
+#include <sys/cdefs.h>
+
+#ifdef __FreeBSD_kernel__
+#include <sys/_types.h>
+#include <machine/_stdint.h>
+#include <sys/_stdint.h>
+#endif
+
+#endif




More information about the Glibc-bsd-commits mailing list