summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-10-20 14:00:14 -0700
committerJosh Blum <josh@joshknows.com>2011-10-20 14:00:14 -0700
commitab6f8142da17ee70effd469f20a41821b4bc4513 (patch)
treec61f4c00a9d36075008cab80631ff2c9378f8925
parent793e9070ce7d88b818b3f4d8809a07fdf50afda0 (diff)
removes gcc warning, dont need symbol export on plain c structs
-rw-r--r--gnuradio-core/src/lib/viterbi/viterbi.h2
-rw-r--r--volk/include/volk/volk_prefs.h2
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 5bb8b357a6..3a3ea56154 100644
--- a/gnuradio-core/src/lib/viterbi/viterbi.h
+++ b/gnuradio-core/src/lib/viterbi/viterbi.h
@@ -26,7 +26,7 @@
#include <gr_core_api.h>
-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 2a7f7e79fe..83d9baf89d 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];
};