diff --git a/ChangeLog.txt b/ChangeLog.txt index ba660d80..d010dad4 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,7 @@ +Build: +- Fix missing function warnings on NetBSD. + + 1.6.4 - 20190801 ================ diff --git a/lib/mosquitto.c b/lib/mosquitto.c index 4b5768f3..795013eb 100644 --- a/lib/mosquitto.c +++ b/lib/mosquitto.c @@ -21,6 +21,7 @@ Contributors: #include #ifndef WIN32 #include +#include #endif #include "mosquitto.h" diff --git a/lib/property_mosq.c b/lib/property_mosq.c index d3854cff..f489136c 100644 --- a/lib/property_mosq.c +++ b/lib/property_mosq.c @@ -20,6 +20,10 @@ Contributors: #include #include +#ifndef WIN32 +# include +#endif + #include "logging_mosq.h" #include "memory_mosq.h" #include "mqtt_protocol.h"