aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/strptime.h
diff options
context:
space:
mode:
authorBalint Reczey <balint@balintreczey.hu>2013-02-28 14:09:46 +0000
committerBalint Reczey <balint@balintreczey.hu>2013-02-28 14:09:46 +0000
commit45c2884f1bbd9c06f7ba3091d968fcb6649a5f56 (patch)
treebb66eea36a288f1ab5e33468ee9bf2989339b2aa /wsutil/strptime.h
parent018ba4ea6584f63aa5c4b741c2e6f6fedc609ad2 (diff)
Export libwsutil symbols using WS_DLL_PUBLIC define
This change replaces *.def and *.sym file usage following the guideline at http://gcc.gnu.org/wiki/Visibility svn path=/trunk/; revision=47938
Diffstat (limited to 'wsutil/strptime.h')
-rw-r--r--wsutil/strptime.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/wsutil/strptime.h b/wsutil/strptime.h
index d10ff5f302..b11d29e715 100644
--- a/wsutil/strptime.h
+++ b/wsutil/strptime.h
@@ -24,9 +24,12 @@
#ifndef __STRPTIME_H__
#define __STRPTIME_H__
+#include "ws_symbol_export.h"
+
/*
* Version of "strptime()", for the benefit of OSes that don't have it.
*/
+WS_DLL_PUBLIC
extern char *strptime(const char *, const char *, struct tm *);
#endif