Skip to content

Commit

Permalink
mtd: fix building with glibc
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
Artox authored and blogic committed Aug 18, 2016
1 parent c8580f5 commit 1e71fca
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions package/system/mtd/src/linksys_bootcount.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 1e71fca

Please sign in to comment.