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:
parent
53fa634908
commit
58b9932ec3
1 changed files with 4 additions and 0 deletions
|
@ -26,6 +26,10 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#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
|
* 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,
|
* three bytes of the mac address. This may be NULL to not default the ssid,
|
||||||
|
|
Loading…
Reference in a new issue