diff options
-rwxr-xr-x | configure.ac | 1 | ||||
-rw-r--r-- | lib/zebra.h | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 475159156..ff340f097 100755 --- a/configure.ac +++ b/configure.ac @@ -478,6 +478,7 @@ AC_C_VOLATILE AC_HEADER_STDC AC_HEADER_TIME AC_HEADER_SYS_WAIT +AC_HEADER_STDBOOL dnl AC_TYPE_PID_T AC_TYPE_UID_T AC_TYPE_MODE_T diff --git a/lib/zebra.h b/lib/zebra.h index aa4974b01..f45e5aaca 100644 --- a/lib/zebra.h +++ b/lib/zebra.h @@ -92,6 +92,9 @@ typedef int socklen_t; #ifdef HAVE_INTTYPES_H #include <inttypes.h> #endif /* HAVE_INTTYPES_H */ +#ifdef HAVE_STDBOOL_H +#include <stdbool.h> +#endif /* machine dependent includes */ #ifdef SUNOS_5 |