diff options
author | dwilder <dwilder> | 2006-10-19 18:37:15 +0000 |
---|---|---|
committer | dwilder <dwilder> | 2006-10-19 18:37:15 +0000 |
commit | 24cb8c3b07c5fed086555b54f9f753bb78df6837 (patch) | |
tree | 9cdfcd666b46b16944ad23f41686cf7bfebfaafb /runtime/arith.c | |
parent | 0b951e7c1aa8653655d63bda882d392f0c2216c8 (diff) | |
download | systemtap-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.c | 7 |
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 */ |