From b7b4e00536107c951a2642a2a1a3fe21a65510a0 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Thu, 3 May 2012 22:20:26 +0200 Subject: Error message if tun cannot be opened --- openvpn/src/compat/compat-stdbool.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 openvpn/src/compat/compat-stdbool.h (limited to 'openvpn/src/compat') diff --git a/openvpn/src/compat/compat-stdbool.h b/openvpn/src/compat/compat-stdbool.h new file mode 100644 index 00000000..99412188 --- /dev/null +++ b/openvpn/src/compat/compat-stdbool.h @@ -0,0 +1,12 @@ +#ifndef __COMPAT_STDBOOL_H +#define __COMPAT_STDBOOL_H + +#ifdef HAVE_STDBOOL_H +#include +#else +typedef int bool; +#define false 0 +#define true 1 +#endif + +#endif -- cgit v1.2.3