summaryrefslogtreecommitdiffstats
path: root/runtime/arith.c
diff options
context:
space:
mode:
authordwilder <dwilder>2006-10-19 18:37:15 +0000
committerdwilder <dwilder>2006-10-19 18:37:15 +0000
commit24cb8c3b07c5fed086555b54f9f753bb78df6837 (patch)
tree9cdfcd666b46b16944ad23f41686cf7bfebfaafb /runtime/arith.c
parent0b951e7c1aa8653655d63bda882d392f0c2216c8 (diff)
downloadsystemtap-steved-24cb8c3b07c5fed086555b54f9f753bb78df6837.tar.gz
systemtap-steved-24cb8c3b07c5fed086555b54f9f753bb78df6837.tar.xz
systemtap-steved-24cb8c3b07c5fed086555b54f9f753bb78df6837.zip
Adding s390x support
Diffstat (limited to 'runtime/arith.c')
-rw-r--r--runtime/arith.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/arith.c b/runtime/arith.c
index fea7421a..97121ae8 100644
--- a/runtime/arith.c
+++ b/runtime/arith.c
@@ -25,6 +25,13 @@ long long _div64 (long long u, long long v);
long long _mod64 (long long u, long long v);
#endif
+/* 31 bit s390 suupport is not yet included, it may never be.
+#ifdef __s390__
+long long _div64 (long long u, long long v);
+long long _mod64 (long long u, long long v);
+#endif
+*/
+
/** Divide x by y. In case of division-by-zero,
* set context error string, and return 0
*/