summaryrefslogtreecommitdiffhomepage
path: root/url.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2023-01-03 18:42:02 +0100
committerRoland Reichwein <mail@reichwein.it>2023-01-03 18:42:02 +0100
commit8299ba653b6a5bc85cf16de89df6d52055895512 (patch)
tree65b6284fa3f01e9340b03a13ccc90ee5b47490c4 /url.h
parenta82d947a594b01af54e056473799ebab619e2bd2 (diff)
Fix exports
Diffstat (limited to 'url.h')
-rw-r--r--url.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/url.h b/url.h
index bd60616..c4745ab 100644
--- a/url.h
+++ b/url.h
@@ -2,5 +2,7 @@
#include <string>
-std::string urlDecode(std::string s);
+#define EXPORT __attribute__((visibility("default")))
+
+EXPORT std::string urlDecode(std::string s);