svn commit: r230790 - head/sys/dev/ixgbe

Jack F Vogel jfv at FreeBSD.org
Mon Jan 30 23:03:22 UTC 2012


Author: jfv
Date: Mon Jan 30 23:03:21 2012
New Revision: 230790
URL: http://svn.freebsd.org/changeset/base/230790

Log:
  Wrap the bool typedef

Modified:
  head/sys/dev/ixgbe/ixgbe_osdep.h

Modified: head/sys/dev/ixgbe/ixgbe_osdep.h
==============================================================================
--- head/sys/dev/ixgbe/ixgbe_osdep.h	Mon Jan 30 22:47:02 2012	(r230789)
+++ head/sys/dev/ixgbe/ixgbe_osdep.h	Mon Jan 30 23:03:21 2012	(r230790)
@@ -106,7 +106,9 @@ typedef uint16_t	u16;
 typedef uint32_t	u32;
 typedef int32_t		s32;
 typedef uint64_t	u64;
+#ifndef __bool_true_false_are_defined
 typedef boolean_t	bool;
+#endif
 
 #define le16_to_cpu 
 


More information about the svn-src-head mailing list