This patch is for speech-tools for Debian GNU/Linux, so as to use the standard library rather than its older form. Forwarded: https://github.com/festvox/speech_tools/pull/8 --- a/include/EST_dynamic_model.h +++ b/include/EST_dynamic_model.h @@ -38,8 +38,8 @@ /*=======================================================================*/ #include -#include -#include +#include +#include #include "EST.h" #include "EST_model_types.h" --- a/base_class/EST_TSimpleVector.cc +++ b/base_class/EST_TSimpleVector.cc @@ -43,8 +43,11 @@ #include "EST_TSimpleVector.h" #include "EST_matrix_support.h" #include +#include #include "EST_cutils.h" -#include + +using std::memset; +using std::memcpy; template void EST_TSimpleVector::copy(const EST_TSimpleVector &a) { --- a/base_class/EST_TSimpleMatrix.cc +++ b/base_class/EST_TSimpleMatrix.cc @@ -44,8 +44,11 @@ #include "EST_TVector.h" #include #include +#include #include "EST_cutils.h" -#include + +using std::memcpy; + template void EST_TSimpleMatrix::copy_data(const EST_TSimpleMatrix &a)