From: Steve Underwood Date: Fri, 4 Dec 2015 17:15:54 +0000 (+0800) Subject: Tweaks for platforms which require string.h for memxxx functions. X-Git-Tag: v1.6.6~1^2~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=568ecb8bf458efd8c2f187875e51b1fc03055eb9;p=thirdparty%2Ffreeswitch.git Tweaks for platforms which require string.h for memxxx functions. --- diff --git a/libs/spandsp/src/g722.c b/libs/spandsp/src/g722.c index aebe9a575e..f3126e8aa1 100644 --- a/libs/spandsp/src/g722.c +++ b/libs/spandsp/src/g722.c @@ -32,6 +32,7 @@ #include #include #include +#include #if defined(HAVE_TGMATH_H) #include #endif diff --git a/libs/spandsp/src/gsm0610_lpc.c b/libs/spandsp/src/gsm0610_lpc.c index 70e06d4122..c1341882d8 100644 --- a/libs/spandsp/src/gsm0610_lpc.c +++ b/libs/spandsp/src/gsm0610_lpc.c @@ -43,6 +43,7 @@ #include "floating_fudge.h" #include #include +#include #include "spandsp/telephony.h" #include "spandsp/fast_convert.h" diff --git a/libs/spandsp/src/v8.c b/libs/spandsp/src/v8.c index 4c5dd43244..4dbe338f72 100644 --- a/libs/spandsp/src/v8.c +++ b/libs/spandsp/src/v8.c @@ -33,6 +33,7 @@ #include #include #include +#include #if defined(HAVE_TGMATH_H) #include #endif