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.
This commit is contained in:
David Kozub 2019-10-03 21:17:45 +02:00
parent 53fa634908
commit 58b9932ec3

View file

@ -26,6 +26,10 @@
extern "C" {
#endif
#include <stddef.h>
#include <stdint.h>
#include <sys/types.h>
/*
* 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,