summaryrefslogtreecommitdiff
path: root/src/misc.c
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2023-11-21 09:56:26 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2023-11-21 09:56:26 +0100
commit987942a206ef0f2342bf81d5de6432c6af42b7e7 (patch)
tree6befd1ab8680f2936d94ac84c94cf4f68f16c14e /src/misc.c
parent163bc6d7fc268bdb1c7cc03699f69d0c5cc0b4cd (diff)
New upstream version 4.17upstream/4.17
Diffstat (limited to 'src/misc.c')
-rw-r--r--src/misc.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/misc.c b/src/misc.c
index 7778b08..c138f23 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -7,6 +7,7 @@
* General Public License as published by the Free Software Foundation;
* either version 2.1 or (at your option) any later version.
*/
+#include <math.h> /* fmod */
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
@@ -88,3 +89,19 @@ EXPORT_SYMBOL void HX_zvecfree(char **args)
free(*travp);
free(args);
}
+
+EXPORT_SYMBOL float HX_flprf(float x, float y)
+{
+ float r = fmodf(x, y);
+ if (r < 0)
+ r += y;
+ return r;
+}
+
+EXPORT_SYMBOL double HX_flpr(double x, double y)
+{
+ double r = fmod(x, y);
+ if (r < 0)
+ r += y;
+ return r;
+}