From: Josua Mayer Date: Wed, 17 Aug 2016 08:27:12 +0000 (+0200) Subject: mtd: fix building with glibc X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=1e71fca7777eeee39a941bdc05535b3e93eb01e9;p=openwrt%2Fstaging%2Fhauke.git 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 --- diff --git a/package/system/mtd/src/linksys_bootcount.c b/package/system/mtd/src/linksys_bootcount.c index 95f75fe4ba..500ede4972 100644 --- a/package/system/mtd/src/linksys_bootcount.c +++ b/package/system/mtd/src/linksys_bootcount.c @@ -28,6 +28,7 @@ #include #include #include +#include #include #include