mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
22 lines
359 B
Plaintext
22 lines
359 B
Plaintext
$NetBSD: patch-ab,v 1.2 2008/01/28 02:56:46 bjs Exp $
|
|
|
|
--- src/wdfs-main.h.orig 2007-03-28 16:53:21.000000000 -0400
|
|
+++ src/wdfs-main.h
|
|
@@ -29,10 +29,16 @@
|
|
esac
|
|
*/
|
|
|
|
+#if defined(HAVE_STDBOOL_H)
|
|
+#include <stdbool.h>
|
|
+typedef bool bool_t;
|
|
+#else
|
|
typedef enum {
|
|
true = 1,
|
|
false = 0
|
|
} bool_t;
|
|
+#endif
|
|
+
|
|
|
|
/* used as mode for unify_path() */
|
|
enum {
|