blob: e4afbc24ddc1877e468ad9cb01b35ce8fd5753d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- src/ssrfpack.c.orig 2020-03-05 09:15:01 UTC
+++ src/ssrfpack.c
@@ -15,6 +15,10 @@
# define sincos(x,s,c) (*s = sin(x), *c = cos(x))
#endif
+#ifdef __FreeBSD__
+#define sincos(x,s,c) *s = sin(x); *c = cos(x)
+#endif
+
#ifdef __cplusplus
extern "C" {
#endif
|