projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fcbe29b
)
Replacement for stdbool.h
author
Guus Sliepen
<guus@tinc-vpn.org>
Wed, 30 Jul 2003 16:00:59 +0000
(16:00 +0000)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Wed, 30 Jul 2003 16:00:59 +0000
(16:00 +0000)
system.h
patch
|
blob
|
history
diff --git
a/system.h
b/system.h
index
73f7aeb
..
0d7b318
100644
(file)
--- a/
system.h
+++ b/
system.h
@@
-27,7
+27,6
@@
#include <stdio.h>
#include <stdlib.h>
-#include <stdbool.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
@@
-36,6
+35,14
@@
#include <fcntl.h>
#include <unistd.h>
+#ifdef HAVE_STDBOOL_H
+#include <stdbool.h>
+#else
+typedef int bool;
+#define true 1
+#define false 0
+#endif
+
#ifdef HAVE_TERMIOS_H
#include <termios.h>
#endif