sync code with last improvements from OpenBSD

This commit is contained in:
purplerain 2023-09-07 18:23:23 +00:00
parent cac1167ac2
commit 0e5a54c21a
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
19 changed files with 662 additions and 356 deletions

View file

@ -8,8 +8,7 @@
#include <math.h>
double
drem(x, y)
double x, y;
drem(double x, double y)
{
return remainder(x, y);
}