diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-08-30 13:04:25 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-08-30 13:04:25 +0000 |
commit | b4adf7645ff6c14e19682b9ef17e15756c5b0b14 (patch) | |
tree | 78e7f1e7cb06f362b9930749d62db8e1d49c874b /src/io.c | |
parent | dd6008995a8e8509d71ffa906c837e7a320e8a15 (diff) | |
download | apk-tools-b4adf7645ff6c14e19682b9ef17e15756c5b0b14.tar.gz apk-tools-b4adf7645ff6c14e19682b9ef17e15756c5b0b14.tar.bz2 apk-tools-b4adf7645ff6c14e19682b9ef17e15756c5b0b14.tar.xz apk-tools-b4adf7645ff6c14e19682b9ef17e15756c5b0b14.zip |
Fix building on eglibc
Seems like recent eglibc requires that you include sys/stat.h
Diffstat (limited to 'src/io.c')
-rw-r--r-- | src/io.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -15,6 +15,7 @@ #include <unistd.h> #include <malloc.h> #include <sys/mman.h> +#include <sys/stat.h> #include <pwd.h> #include <grp.h> |