diff options
author | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2008-04-30 02:24:06 +0000 |
---|---|---|
committer | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2008-04-30 02:24:06 +0000 |
commit | 38ea3a576a20820e574c6cb37607aeafe07f34b4 (patch) | |
tree | f606c6f72729860c68915920a71fa2fa97a0b945 /gcell/src | |
parent | d8e2641775a0ceb4fa388c59968a75509250d923 (diff) |
Tweaks for gcc 4.3 based on patch from Marek Mahut <mmahut@fedoraproject.org>.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@8292 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gcell/src')
-rw-r--r-- | gcell/src/lib/runtime/gc_aligned_alloc.cc | 1 | ||||
-rw-r--r-- | gcell/src/lib/runtime/gc_job_manager_impl.cc | 1 | ||||
-rw-r--r-- | gcell/src/lib/runtime/qa_job_manager.cc | 1 | ||||
-rw-r--r-- | gcell/src/lib/wrapper/qa_gcp_fft_1d_r2.cc | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/gcell/src/lib/runtime/gc_aligned_alloc.cc b/gcell/src/lib/runtime/gc_aligned_alloc.cc index fa20a64432..6f9a999b91 100644 --- a/gcell/src/lib/runtime/gc_aligned_alloc.cc +++ b/gcell/src/lib/runtime/gc_aligned_alloc.cc @@ -25,6 +25,7 @@ #include <gc_aligned_alloc.h> #include <stdlib.h> #include <stdexcept> +#include <string.h> // custom deleter of anything that can be freed with "free" class free_deleter { diff --git a/gcell/src/lib/runtime/gc_job_manager_impl.cc b/gcell/src/lib/runtime/gc_job_manager_impl.cc index 9c859511b9..2b4b83f4fc 100644 --- a/gcell/src/lib/runtime/gc_job_manager_impl.cc +++ b/gcell/src/lib/runtime/gc_job_manager_impl.cc @@ -36,6 +36,7 @@ #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> +#include <string.h> static const size_t CACHE_LINE_SIZE = 128; diff --git a/gcell/src/lib/runtime/qa_job_manager.cc b/gcell/src/lib/runtime/qa_job_manager.cc index 53a1ec6811..e37e3c37fe 100644 --- a/gcell/src/lib/runtime/qa_job_manager.cc +++ b/gcell/src/lib/runtime/qa_job_manager.cc @@ -26,6 +26,7 @@ #include <stdio.h> #include <time.h> #include <errno.h> +#include <string.h> #include <malloc.h> diff --git a/gcell/src/lib/wrapper/qa_gcp_fft_1d_r2.cc b/gcell/src/lib/wrapper/qa_gcp_fft_1d_r2.cc index 404f836577..dbbe05fbc5 100644 --- a/gcell/src/lib/wrapper/qa_gcp_fft_1d_r2.cc +++ b/gcell/src/lib/wrapper/qa_gcp_fft_1d_r2.cc @@ -26,6 +26,7 @@ #include <stdio.h> #include <stdlib.h> // random, posix_memalign #include <algorithm> +#include <string.h> typedef boost::shared_ptr<void> void_sptr; |