summaryrefslogtreecommitdiff
path: root/app/openvpn/src/compat/compat-stdbool.h
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2015-06-05 00:02:09 +0200
committerParménides GV <parmegv@sdf.org>2015-06-05 00:02:09 +0200
commit8d39fbdb4980c95268249f21f3c6b8e36b22cf90 (patch)
tree5e54d8cc7ea06fdcf1aa88fd7fd54ec569a8b7a3 /app/openvpn/src/compat/compat-stdbool.h
parent8dc4f58d96892fbfd83094fb85b1d17656035290 (diff)
parent3e849c7cbe847d9260dee7a29b241c8aef185f6d (diff)
Merge branch 'feature/Update-ics-openvpn-from-GitHub-#7087' into develop
Diffstat (limited to 'app/openvpn/src/compat/compat-stdbool.h')
-rw-r--r--app/openvpn/src/compat/compat-stdbool.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/app/openvpn/src/compat/compat-stdbool.h b/app/openvpn/src/compat/compat-stdbool.h
deleted file mode 100644
index 99412188..00000000
--- a/app/openvpn/src/compat/compat-stdbool.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef __COMPAT_STDBOOL_H
-#define __COMPAT_STDBOOL_H
-
-#ifdef HAVE_STDBOOL_H
-#include <stdbool.h>
-#else
-typedef int bool;
-#define false 0
-#define true 1
-#endif
-
-#endif