1 /* $Id: div64.h,v 1.1 2000/01/28 23:18:55 ralf Exp $
3 * This file is subject to the terms and conditions of the GNU General Public
4 * License. See the file "COPYING" in the main directory of this archive
11 * Hey, we're already 64-bit, no
12 * need to play games..
14 #define do_div(n,base) ({ \
16 __res = ((unsigned long) n) % (unsigned) base; \
17 n = ((unsigned long) n) / (unsigned) base; \
20 #endif /* _ASM_DIV64_H */