Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
math
remainderf.c
pretty
plain
permalink
blame
history
•
9 lines
•
125 B
1
#include <math.h>
2
3
float remainderf(float x, float y)
4
{
5
	int q;
6
	return remquof(x, y, &q);
7
}
8
9
weak_alias(remainderf, dremf);