URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [include/] [asm-ia64/] [div64.h] - Rev 1774
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef _ASM_IA64_DIV64_H #define _ASM_IA64_DIV64_H /* * Copyright (C) 1999 Hewlett-Packard Co * Copyright (C) 1999 David Mosberger-Tang <davidm@hpl.hp.com> * * vsprintf uses this to divide a 64-bit integer N by a small integer BASE. * This is incredibly hard on IA-64... */ #define do_div(n,base) \ ({ \ int _res; \ _res = ((unsigned long) (n)) % (unsigned) (base); \ (n) = ((unsigned long) (n)) / (unsigned) (base); \ _res; \ }) #endif /* _ASM_IA64_DIV64_H */
Go to most recent revision | Compare with Previous | Blame | View Log