aboutsummaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'text.py')
-rw-r--r--text.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/text.py b/text.py
index f976327..a80d9ce 100644
--- a/text.py
+++ b/text.py
@@ -65,6 +65,8 @@ int64_t read_leb_128_s(int _fd, int max_size) {
if ((last_byte & 0x40) != 0) result |= -(1 << shift);
return result;
}"""
+ c_read_leb_128_s_sig = "int64_t read_leb_128_s(int _fd, int max_size);\n"
+ c_read_leb_128_u_sig = "uint64_t read_leb_128_u(int _fd, int max_size);\n"
c_read_leb_macro_defs = """
#define READ_VAR_UINT_1(FD) read_leb128_u(FD, 1)