Skip to content
Snippets Groups Projects
Commit be31eb24 authored by Alex Dowad's avatar Alex Dowad Committed by Timo Teräs
Browse files

io: fix compiler error by including stdint.h

According to the C standards, uint32_t is defined in stdint.h.
Presumably apk is usually built against C libraries where
stdint.h is indirectly included through another header file,
but this isn't the case with the version of glibc which I am using.
parent 0ed9a55b
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,7 @@
#include <unistd.h>
#include <malloc.h>
#include <dirent.h>
#include <stdint.h>
#include <sys/mman.h>
#include <sys/wait.h>
#include <sys/stat.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment