Commits
Ken Cunningham authored and Michael Dickens committed d05037cc475
1 - | diff --git a/include/osmocom/dsp/cfile.h b/include/osmocom/dsp/cfile.h |
2 - | index be9392e..eab9996 100644 |
3 - | --- a/include/osmocom/dsp/cfile.h |
4 - | +++ b/include/osmocom/dsp/cfile.h |
5 - | |
6 - | * \brief Osmocom .cfile helpers header |
7 - | */ |
8 - | |
9 - | -#include <complex.h> |
10 - | +#include "/usr/include/complex.h" |
11 - | |
12 - | /*! \brief Structure representing a currently mapped .cfile */ |
13 - | struct cfile { |
14 - | diff --git a/include/osmocom/dsp/cxvec.h b/include/osmocom/dsp/cxvec.h |
15 - | index 063e30c..5adc771 100644 |
16 - | --- a/include/osmocom/dsp/cxvec.h |
17 - | +++ b/include/osmocom/dsp/cxvec.h |
18 - | |
19 - | * \brief Osmocom Complex vectors header |
20 - | */ |
21 - | |
22 - | -#include <complex.h> |
23 - | +#include "/usr/include/complex.h" |
24 - | |
25 - | #define CXVEC_FLG_REAL_ONLY (1<<0) /*!< \brief Real values only */ |
26 - | |
27 - | diff --git a/include/osmocom/dsp/cxvec_math.h b/include/osmocom/dsp/cxvec_math.h |
28 - | index 7e372c4..fa045b7 100644 |
29 - | --- a/include/osmocom/dsp/cxvec_math.h |
30 - | +++ b/include/osmocom/dsp/cxvec_math.h |
31 - | |
32 - | * \brief Osmocom Complex vectors math header |
33 - | */ |
34 - | |
35 - | -#include <complex.h> |
36 - | +#include "/usr/include/complex.h" |
37 - | #include <math.h> |
38 - | |
39 - | #include <osmocom/dsp/cxvec.h> |
40 - | diff --git a/include/osmocom/dsp/iqbal.h b/include/osmocom/dsp/iqbal.h |
41 - | index c7f7e60..5b2b037 100644 |
42 - | --- a/include/osmocom/dsp/iqbal.h |
43 - | +++ b/include/osmocom/dsp/iqbal.h |
44 - | |
45 - | * \brief Osmocom IQ balance utils header |
46 - | */ |
47 - | |
48 - | -#include <complex.h> |
49 - | +#include "/usr/include/complex.h" |
50 - | |
51 - | #include <osmocom/dsp/cxvec.h> |
52 - | |
53 - | diff --git a/src/cfile.c b/src/cfile.c |
54 - | index 4fa927f..beae845 100644 |
55 - | --- a/src/cfile.c |
56 - | +++ b/src/cfile.c |
57 - | |
58 - | * \brief Osmocom .cfile helpers implementation |
59 - | */ |
60 - | |
61 - | -#include <complex.h> |
62 - | +#include "/usr/include/complex.h" |
63 - | #include <fcntl.h> |
64 - | #include <stdio.h> |
65 - | #include <stdlib.h> |
66 - | diff --git a/src/cxvec.c b/src/cxvec.c |
67 - | index fcda8af..f6f0a9b 100644 |
68 - | --- a/src/cxvec.c |
69 - | +++ b/src/cxvec.c |
70 - | |
71 - | * \brief Osmocom Complex vectors implementation |
72 - | */ |
73 - | |
74 - | -#include <complex.h> |
75 - | +#include "/usr/include/complex.h" |
76 - | #include <math.h> |
77 - | #include <stdio.h> |
78 - | #include <stdlib.h> |
79 - | diff --git a/src/cxvec_math.c b/src/cxvec_math.c |
80 - | index 64e2d1b..24ecb58 100644 |
81 - | --- a/src/cxvec_math.c |
82 - | +++ b/src/cxvec_math.c |
83 - | |
84 - | * \brief Osmocom Complex vectors math implementation |
85 - | */ |
86 - | |
87 - | -#include <complex.h> |
88 - | +#include "/usr/include/complex.h" |
89 - | #include <math.h> |
90 - | #include <stdio.h> |
91 - | #include <stdlib.h> |
92 - | diff --git a/src/iqbal.c b/src/iqbal.c |
93 - | index e5432f9..f62db05 100644 |
94 - | --- a/src/iqbal.c |
95 - | +++ b/src/iqbal.c |
96 - | |
97 - | * - Optimization based on steepest gradient with dynamic step size |
98 - | */ |
99 - | |
100 - | -#include <complex.h> |
101 - | +#include "/usr/include/complex.h" |
102 - | #include <stdlib.h> |
103 - | #include <string.h> |
104 - |