summaryrefslogtreecommitdiff
path: root/src/package.c
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-08-30 13:04:25 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-08-30 13:04:25 +0000
commitb4adf7645ff6c14e19682b9ef17e15756c5b0b14 (patch)
tree78e7f1e7cb06f362b9930749d62db8e1d49c874b /src/package.c
parentdd6008995a8e8509d71ffa906c837e7a320e8a15 (diff)
downloadapk-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/package.c')
-rw-r--r--src/package.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/package.c b/src/package.c
index e73814a..8f15e7a 100644
--- a/src/package.c
+++ b/src/package.c
@@ -19,6 +19,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>
+#include <sys/stat.h>
#include <openssl/pem.h>