Staging
v0.7.0
https://github.com/torvalds/linux
Raw File
Tip revision: c32511e2718618f0b53479eb36e07439aa363a74 authored by Linus Torvalds on 13 July 2005, 04:46:46 UTC
Linux 2.6.13-rc3
Tip revision: c32511e
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