summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTBK <tbk@jjtc.eu>2020-03-21 16:28:35 +0100
committerTimo Teräs <timo.teras@iki.fi>2021-04-11 13:57:58 +0300
commit6103483337e91b9bd58cb240dce44f613442610f (patch)
tree86e0ae40ecb9a2494d21510d13ff36311177d730
parent3ce77b65c0bf6920b855115977e8832d91bcb86b (diff)
downloadapk-tools-6103483337e91b9bd58cb240dce44f613442610f.tar.gz
apk-tools-6103483337e91b9bd58cb240dce44f613442610f.tar.bz2
apk-tools-6103483337e91b9bd58cb240dce44f613442610f.tar.xz
apk-tools-6103483337e91b9bd58cb240dce44f613442610f.zip
fix glibc build
fixes #10677 src/apk_defines.h:152:15: error: unknown type name 'uint32_t' static inline uint32_t get_unaligned32(const void *ptr) ^~~~~~~~ (cherry picked from commit a9916c2d4a14a509daf7e3bc73faee3a8134071f)
-rw-r--r--src/apk_defines.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/apk_defines.h b/src/apk_defines.h
index 00e9ea8..1cd8b6c 100644
--- a/src/apk_defines.h
+++ b/src/apk_defines.h
@@ -13,6 +13,7 @@
#define APK_DEFINES_H
#include <endian.h>
+#include <stdint.h>
#include <string.h>
#include <time.h>