5 lines
74 B
C
Raw Normal View History

2012-03-28 01:13:14 +02:00
unsigned int __umodi (unsigned int a, unsigned int b)
{
return a % b;
}