diff options
-rw-r--r-- | volk/gen/make_h.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/volk/gen/make_h.py b/volk/gen/make_h.py index 76f5f8c69..354e57258 100644 --- a/volk/gen/make_h.py +++ b/volk/gen/make_h.py @@ -26,7 +26,7 @@ VOLK_API unsigned int volk_get_alignment(void); """ for i in range(len(funclist)): - tempstring += "extern " + replace_volk.sub("p", funclist[i]) + " " + funclist[i] + ";\n" + tempstring += "extern VOLK_API " + replace_volk.sub("p", funclist[i]) + " " + funclist[i] + ";\n" tempstring += "extern VOLK_API void %s_manual%s;\n" % (funclist[i], arched_arglist[i]) tempstring = strip_trailing(tempstring, " {") tempstring += "extern VOLK_API struct volk_func_desc %s_get_func_desc(void);\n" % (funclist[i]) |