import of upstream 2.4.34.4 from kernel.org
[linux-2.4.git] / include / asm-s390x / div64.h
1 #ifndef __S390_DIV64
2 #define __S390_DIV64
3
4 #define do_div(n,base) ({ \
5 int __res; \
6 __res = ((unsigned long) n) % (unsigned) base; \
7 n = ((unsigned long) n) / (unsigned) base; \
8 __res; })
9
10 #endif