summaryrefslogtreecommitdiff
path: root/lib/sail.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sail.c')
-rw-r--r--lib/sail.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/sail.c b/lib/sail.c
index fc11a40d..6ea41fcc 100644
--- a/lib/sail.c
+++ b/lib/sail.c
@@ -693,6 +693,12 @@ void sail_signed(sail_int *rop, const sail_bits op)
}
}
+inline
+mach_int fast_unsigned(const mach_bits op)
+{
+ return (mach_int) op;
+}
+
void append(sail_bits *rop, const sail_bits op1, const sail_bits op2)
{
rop->len = op1.len + op2.len;