summaryrefslogtreecommitdiffstats
path: root/tapset/endian.stp
diff options
context:
space:
mode:
Diffstat (limited to 'tapset/endian.stp')
-rw-r--r--tapset/endian.stp8
1 files changed, 0 insertions, 8 deletions
diff --git a/tapset/endian.stp b/tapset/endian.stp
index c3b2b212..34522cd9 100644
--- a/tapset/endian.stp
+++ b/tapset/endian.stp
@@ -1,11 +1,3 @@
-# set the default endianess for binary printf
-# val: 0 - native (default)
-# 1 - little endian
-# 2 - big endian
-function set_endian:long (val:long) %{
- _stp_endian = THIS->val;
-%}
-
function big_endian2:long (val:long) %{ /* pure */
THIS->__retvalue = cpu_to_be16(THIS->val);
%}