Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: a38d6181ff27824c79fc7df825164a212eff6a3f authored by Linus Torvalds on 01 July 2007, 19:54:24 UTC
Linux 2.6.22-rc7
Tip revision: a38d618
div64-generic.c
/*
 * Generic __div64_32 wrapper for __xdiv64_32.
 */

#include <linux/types.h>

extern u64 __xdiv64_32(u64 n, u32 d);

u64 __div64_32(u64 *xp, u32 y)
{
	u64 rem;
	u64 q = __xdiv64_32(*xp, y);

	rem = *xp - q * y;
	*xp = q;

	return rem;
}

back to top