about summary refs log tree commit diff stats
path: root/miasm/runtime/export.h
diff options
context:
space:
mode:
Diffstat (limited to 'miasm/runtime/export.h')
-rw-r--r--miasm/runtime/export.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/miasm/runtime/export.h b/miasm/runtime/export.h
deleted file mode 100644
index f21a83a8..00000000
--- a/miasm/runtime/export.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#ifndef MIASM_RT_EXPORT_H
-#define MIASM_RT_EXPORT_H
-
-#ifdef _WIN32
-#define _MIASM_EXPORT __declspec(dllexport)
-#else
-#define _MIASM_EXPORT __attribute__((visibility("default")))
-#endif
-
-#endif