Chameleon

Chameleon Svn Source Tree

Root/branches/rewrite/i386/modules/klibc/__umoddi3.c

Source at commit 1077 created 13 years 1 month ago.
By azimutz, Removing this info from DEBUG's realm. This will be enabled by default until i gather enough feedback to decide whether it will stay On or Off by default. This info display, is only available on Gui; ShowInfo=No disables it. For the Gui minimalist, "Boot Banner"=No also disables it. Ok, "house cleaning" is suspended until i figure out what Meklort's cooking over at that new branch... "rewrite" :-o just the name sounds scary :-D
1/*
2 * arch/i386/libgcc/__umoddi3.c
3 */
4
5#include <stdint.h>
6#include <stddef.h>
7
8extern uint64_t __udivmoddi4(uint64_t num, uint64_t den, uint64_t * rem);
9
10uint64_t __umoddi3(uint64_t num, uint64_t den)
11{
12uint64_t v;
13
14(void)__udivmoddi4(num, den, &v);
15return v;
16}
17

Archive Download this file

Revision: 1077