diff options
Diffstat (limited to 'tapset/logging.stp')
-rw-r--r-- | tapset/logging.stp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tapset/logging.stp b/tapset/logging.stp index 3b0f9df5..968435e2 100644 --- a/tapset/logging.stp +++ b/tapset/logging.stp @@ -36,3 +36,8 @@ function stp_print_binary(n:long, arg1:long, arg2:long, arg3:long, arg4:long) %{ _stp_print_binary (THIS->n, THIS->arg1, THIS->arg2, THIS->arg3, THIS->arg4); %} +function print_char(c:long) %{ +{ + _stp_print_char((char)THIS->c); +} +%} |