URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [include/] [asm-arm/] [div64.h] - Rev 1765
Compare with Previous | Blame | View Log
#ifndef __ASM_ARM_DIV64 #define __ASM_ARM_DIV64 /* We're not 64-bit, but... */ #define do_div(n,base) \ ({ \ int __res; \ __res = ((unsigned long)n) % (unsigned int)base; \ n = ((unsigned long)n) / (unsigned int)base; \ __res; \ }) #endif