From 58b9932ec3b96ee89e1c202a093357d4a60c5541 Mon Sep 17 00:00:00 2001 From: David Kozub Date: Thu, 3 Oct 2019 21:17:45 +0200 Subject: [PATCH] extras/wificfg: make sure wificfg.h #includes all necessary files Without these, wificfg.h can fail to compile because types like uint32_t, size_t or ssize_t are not available. --- extras/wificfg/wificfg.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/extras/wificfg/wificfg.h b/extras/wificfg/wificfg.h index 3461c7a..b823369 100644 --- a/extras/wificfg/wificfg.h +++ b/extras/wificfg/wificfg.h @@ -26,6 +26,10 @@ extern "C" { #endif +#include +#include +#include + /* * Printf format used to initialize a default AP ssid. It is passed the last * three bytes of the mac address. This may be NULL to not default the ssid,