freebsd-ports/misc/dahdi-kmod/files/patch-freebsd-include-stdbool.h
2012-02-23 08:08:51 +00:00

20 lines
412 B
C

Index: freebsd/include/stdbool.h
===================================================================
--- freebsd/include/stdbool.h.orig (revision 10467)
+++ freebsd/include/stdbool.h (revision 10468)
@@ -1,11 +1,15 @@
#ifndef _STDBOOL_H_
#define _STDBOOL_H_
+#include <sys/types.h>
+
+#ifndef __bool_true_false_are_defined
typedef int bool;
enum {
false,
true
};
+#endif
#endif /* _STDBOOL_H_ */