1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00
freebsd-ports/lang/gambas/files/patch-src_exec_gbx_math.c
2005-11-08 06:09:30 +00:00

14 lines
312 B
C

--- src/exec/gbx_math.c.orig Fri Oct 28 17:25:37 2005
+++ src/exec/gbx_math.c Mon Nov 7 23:35:25 2005
@@ -27,6 +27,10 @@
#include <math.h>
#include <time.h>
#include <sys/time.h>
+#ifdef __FreeBSD__
+# include <mathl.h>
+# define modfl(a,b) modf(a,b)
+#endif
#include "gb_common.h"
#include "gbx_math.h"