webclient.h: Avoid relying on indirect inclusion

Include stdint.h for uint16_t explicitly.

This was necessary when I was trying to build this natively
on Ubuntu.  It seems some other headers happen to pull
the uint16_t definition by luck on NuttX and macOS.
This commit is contained in:
YAMAMOTO Takashi 2022-06-03 16:18:16 +09:00 committed by Petro Karashchenko
parent a563014646
commit 5e3a3dae10

View File

@ -49,6 +49,7 @@
#include <nuttx/config.h>
#include <stdbool.h>
#include <stdint.h>
#include <sys/types.h>
/****************************************************************************