diff options
Diffstat (limited to 'volk/gen/emit_omnilog.py')
-rw-r--r-- | volk/gen/emit_omnilog.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/volk/gen/emit_omnilog.py b/volk/gen/emit_omnilog.py deleted file mode 100644 index 309d7e578..000000000 --- a/volk/gen/emit_omnilog.py +++ /dev/null @@ -1,13 +0,0 @@ -def emit_prolog(): - tempstring = ""; - tempstring = tempstring + '#ifdef __cplusplus\n'; - tempstring = tempstring + 'extern "C" {\n'; - tempstring = tempstring + '#endif\n'; - return tempstring; -def emit_epilog(): - tempstring = ""; - tempstring = tempstring + '#ifdef __cplusplus\n'; - tempstring = tempstring + '}\n'; - tempstring = tempstring + '#endif\n'; - return tempstring; - |