#include <math.h>
double remainder(double x, double y)
{
int q;
return remquo(x, y, &q);
}
weak_alias(remainder, drem);
#ifdef TEST
int
main(void) {
return 0;
}
#endif
![]() |
index : grovel | |
| Unnamed repository; edit this file 'description' to name the repository. | External SSH Git service user |
| aboutsummaryrefslogtreecommitdiff |
#include <math.h>
double remainder(double x, double y)
{
int q;
return remquo(x, y, &q);
}
weak_alias(remainder, drem);
#ifdef TEST
int
main(void) {
return 0;
}
#endif