From ab6f8142da17ee70effd469f20a41821b4bc4513 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Thu, 20 Oct 2011 14:00:14 -0700 Subject: removes gcc warning, dont need symbol export on plain c structs --- gnuradio-core/src/lib/viterbi/viterbi.h | 2 +- volk/include/volk/volk_prefs.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gnuradio-core/src/lib/viterbi/viterbi.h b/gnuradio-core/src/lib/viterbi/viterbi.h index 5bb8b357a..3a3ea5615 100644 --- a/gnuradio-core/src/lib/viterbi/viterbi.h +++ b/gnuradio-core/src/lib/viterbi/viterbi.h @@ -26,7 +26,7 @@ #include -struct GR_CORE_API viterbi_state { +struct viterbi_state { unsigned long path; /* Decoded path to this state */ long metric; /* Cumulative metric to this state */ }; diff --git a/volk/include/volk/volk_prefs.h b/volk/include/volk/volk_prefs.h index 2a7f7e79f..83d9baf89 100644 --- a/volk/include/volk/volk_prefs.h +++ b/volk/include/volk/volk_prefs.h @@ -5,7 +5,7 @@ __VOLK_DECL_BEGIN -struct VOLK_API volk_arch_pref { +struct volk_arch_pref { char name[128]; char arch[32]; }; -- cgit