mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
13 lines
350 B
Plaintext
13 lines
350 B
Plaintext
--- src/exec/dxmods/_compoper1.c.orig Wed May 26 01:52:52 1999
|
|
+++ src/exec/dxmods/_compoper1.c Thu May 27 10:21:45 1999
|
|
@@ -477,6 +477,9 @@
|
|
# define rint(x) ((float)((int)((x) + 0.5)))
|
|
# define trunc(x) ((float)((int)(x)))
|
|
#endif
|
|
+#ifdef __FreeBSD__
|
|
+# define trunc(x) ((float)((int)(x)))
|
|
+#endif
|
|
#define SIGN(x) ((x) >= 0? (1): (-1))
|
|
|
|
|