summaryrefslogtreecommitdiffstats
path: root/src/ustar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ustar.h')
-rw-r--r--src/ustar.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ustar.h b/src/ustar.h
index de782b8..4015639 100644
--- a/src/ustar.h
+++ b/src/ustar.h
@@ -20,6 +20,8 @@
#ifndef OPKG_OPK_USTAR_H_
#define OPKG_OPK_USTAR_H_
+#include <stdint.h>
+
#define OPKG_OPK_USTAR_RECORD_SIZE 512
#define OPKG_OPK_USTAR_NAME_MAX_LEN 257 /* prefix[155] + '/' + name[100] + '\0'
*/
@@ -27,7 +29,8 @@
struct opkg_opk_ustar;
struct opkg_opk_ustar_member {
- char name[OPKG_OPK_USTAR_NAME_MAX_LEN];
+ char name[OPKG_OPK_USTAR_NAME_MAX_LEN];
+ int64_t size;
};
struct opkg_opk_ustar *