[Glibc-bsd-commits] r5124 - in trunk/freebsd-glue: debian include include/sys

Robert Millan rmh at alioth.debian.org
Tue Nov 5 13:35:15 UTC 2013


Author: rmh
Date: 2013-11-05 13:35:15 +0000 (Tue, 05 Nov 2013)
New Revision: 5124

Added:
   trunk/freebsd-glue/include/stdint.h
Removed:
   trunk/freebsd-glue/include/sys/stdint.h
Modified:
   trunk/freebsd-glue/debian/changelog
Log:
Move <sys/stdint.h> to <stdint.h>.

Modified: trunk/freebsd-glue/debian/changelog
===================================================================
--- trunk/freebsd-glue/debian/changelog	2013-11-02 13:13:45 UTC (rev 5123)
+++ trunk/freebsd-glue/debian/changelog	2013-11-05 13:35:15 UTC (rev 5124)
@@ -3,6 +3,7 @@
   * Add INADDR_ALLRPTS_GROUP, INADDR_CARP_GROUP, INADDR_PFSYNC_GROUP and
     INADDR_ALLMDNS_GROUP magic IPv4 addresses.
   * Add the mac_* family of functions (as defined by <sys/mac.h>.
+  * Move <sys/stdint.h> to <stdint.h>.
 
  -- Robert Millan <rmh at debian.org>  Fri, 01 Nov 2013 13:38:42 +0100
 

Copied: trunk/freebsd-glue/include/stdint.h (from rev 5115, trunk/freebsd-glue/include/sys/stdint.h)
===================================================================
--- trunk/freebsd-glue/include/stdint.h	                        (rev 0)
+++ trunk/freebsd-glue/include/stdint.h	2013-11-05 13:35:15 UTC (rev 5124)
@@ -0,0 +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

Deleted: trunk/freebsd-glue/include/sys/stdint.h
===================================================================
--- trunk/freebsd-glue/include/sys/stdint.h	2013-11-02 13:13:45 UTC (rev 5123)
+++ trunk/freebsd-glue/include/sys/stdint.h	2013-11-05 13:35:15 UTC (rev 5124)
@@ -1,14 +0,0 @@
-#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