mirror of
https://github.com/termux/termux-packages.git
synced 2024-11-11 13:09:18 +00:00
6eadd17b1b
Enable auto update
17 lines
433 B
Diff
17 lines
433 B
Diff
--- a/s7.c
|
|
+++ b/s7.c
|
|
@@ -404,6 +404,13 @@
|
|
#endif
|
|
#endif
|
|
|
|
+ #ifndef clog
|
|
+ double complex clog(double complex);
|
|
+ #endif
|
|
+ #ifndef cpow
|
|
+ double complex cpow(double complex, double complex);
|
|
+ #endif
|
|
+
|
|
#ifndef CMPLX
|
|
#if (!(defined(__cplusplus))) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7)) && !defined(__INTEL_COMPILER)
|
|
#define CMPLX(x, y) __builtin_complex ((double) (x), (double) (y))
|