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.
cute-signatures
Alex Dowad 2015-04-22 08:45:01 +02:00 committed by Timo Teräs
parent 0ed9a55b7d
commit be31eb24d8
1 changed files with 1 additions and 0 deletions

View File

@ -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>