]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Tweaks for platforms which require string.h for memxxx functions.
authorSteve Underwood <steveu@coppice.org>
Fri, 4 Dec 2015 17:15:54 +0000 (01:15 +0800)
committerSteve Underwood <steveu@coppice.org>
Fri, 4 Dec 2015 17:15:54 +0000 (01:15 +0800)
libs/spandsp/src/g722.c
libs/spandsp/src/gsm0610_lpc.c
libs/spandsp/src/v8.c

index aebe9a575e57d8737a3588ebc7947c514eff6b7e..f3126e8aa1ff9d4fe70bf2fcd00e050741a8db6d 100644 (file)
@@ -32,6 +32,7 @@
 #include <inttypes.h>
 #include <memory.h>
 #include <stdlib.h>
+#include <string.h>
 #if defined(HAVE_TGMATH_H)
 #include <tgmath.h>
 #endif
index 70e06d4122d3cb88b074ca8b02a08c9600dc9b31..c1341882d87c4379748f97e053e9122e68c254e5 100644 (file)
@@ -43,6 +43,7 @@
 #include "floating_fudge.h"
 #include <stdlib.h>
 #include <memory.h>
+#include <string.h>
 
 #include "spandsp/telephony.h"
 #include "spandsp/fast_convert.h"
index 4c5dd43244c4d08a663cca508ca1ccb6d2372ff2..4dbe338f7290a44f38aa52bd76c3dedc16d05966 100644 (file)
@@ -33,6 +33,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <memory.h>
+#include <string.h>
 #if defined(HAVE_TGMATH_H)
 #include <tgmath.h>
 #endif