mtd: fix building with glibc

src/linksys_bootcount.c misses to include stdint.h.
Apparently musl doesn't mind and includes this header by default,
but glibc does not and causes the build to fail.

Signed-off-by: Josua Mayer <josua.mayer97@gmail.com>
Josua Mayer 8 years ago committed by John Crispin
parent c8580f51ba
commit 1e71fca777

@ -28,6 +28,7 @@
#include <endian.h>
#include <string.h>
#include <errno.h>
#include <stdint.h>
#include <sys/ioctl.h>
#include <mtd/mtd-user.h>

Loading…
Cancel
Save