projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
math: fix pow signed shift ub
[oweals/musl.git]
/
src
/
math
/
remainderf.c
1
#include <math.h>
2
#include "libc.h"
3
4
float remainderf(float x, float y)
5
{
6
int q;
7
return remquof(x, y, &q);
8
}
9
10
weak_alias(remainderf, dremf);