aboutsummaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-08-04 18:44:21 +0000
committerbloodstalker <thabogre@gmail.com>2018-08-04 18:44:21 +0000
commitb7251595295f7e1c3bf28afe25f6d070400bbcf5 (patch)
tree785c2820bccb164d27c381277e6f127bafa1ba4e /text.py
parentupdate (diff)
downloadfaultreiber-b7251595295f7e1c3bf28afe25f6d070400bbcf5.tar.gz
faultreiber-b7251595295f7e1c3bf28afe25f6d070400bbcf5.zip
update
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)