blob: ac9ff1c593f36785fd48aef4ca9b162f559b6cd9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- pammodem/pammodem.c.orig 2015-05-04 17:58:30 UTC
+++ pammodem/pammodem.c
@@ -160,7 +160,7 @@ struct rxstate {
unsigned int rxptr;
};
-extern inline int rxgsfir(const int16_t *buf, const int *coeff)
+inline int rxgsfir(const int16_t *buf, const int *coeff)
{
unsigned int i;
int s;
@@ -207,7 +207,7 @@ static void rxrewindsamples(struct rxsta
rx->rxphase -= ph;
}
-only_inline int calcsync(int *toten, int *corren, int16_t *samples)
+inline int calcsync(int *toten, int *corren, int16_t *samples)
{
const int *tr = trainsyms;
unsigned int i;
|