summaryrefslogtreecommitdiff
path: root/release/src/linux/linux/include/asm-alpha/div64.h
blob: 080dcd48080524df9bdf4922b378287498f2c042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __ALPHA_DIV64
#define __ALPHA_DIV64

/*
 * Hey, we're already 64-bit, no
 * need to play games..
 */
#define do_div(n,base) ({ \
	int __res; \
	__res = ((unsigned long) (n)) % (unsigned) (base); \
	(n) = ((unsigned long) (n)) / (unsigned) (base); \
	__res; })

#endif