summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2000-10-16 06:04:50 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2000-10-16 06:04:50 +0000
commited62b49141bea6697fbaa7f085af604dbe7b9564 (patch)
tree24b8fe20a3b2235b303d428731c5d38a5b266ea7 /time
parentf97d8155700af0ef88f7bca5ad088e1a399a75d3 (diff)
downloadlibapr-ed62b49141bea6697fbaa7f085af604dbe7b9564.tar.gz
Renamed all MODULE_EXPORT symbols to AP_MODULE_DECLARE and all symbols
for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper) and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE. All _VAR_ flavors changes to _DATA to be absolutely clear. Thank you Greg, for the most obvious suggestion. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60587 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'time')
-rw-r--r--time/unix/timestr.c4
-rw-r--r--time/win32/timestr.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/time/unix/timestr.c b/time/unix/timestr.c
index 52aa1f148..9926e23a2 100644
--- a/time/unix/timestr.c
+++ b/time/unix/timestr.c
@@ -68,11 +68,11 @@
#endif
/* End System Headers */
-APR_VAR_EXPORT const char apr_month_snames[12][4] =
+APR_DECLARE_DATA const char apr_month_snames[12][4] =
{
"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
-APR_VAR_EXPORT const char apr_day_snames[7][4] =
+APR_DECLARE_DATA const char apr_day_snames[7][4] =
{
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
};
diff --git a/time/win32/timestr.c b/time/win32/timestr.c
index 4f397cdd3..6df9dcc39 100644
--- a/time/win32/timestr.c
+++ b/time/win32/timestr.c
@@ -55,11 +55,11 @@
#include "atime.h"
#include "apr_portable.h"
-APR_VAR_EXPORT const char apr_month_snames[12][4] =
+APR_DECLARE_DATA const char apr_month_snames[12][4] =
{
"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
-APR_VAR_EXPORT const char apr_day_snames[7][4] =
+APR_DECLARE_DATA const char apr_day_snames[7][4] =
{
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
};