From ed62b49141bea6697fbaa7f085af604dbe7b9564 Mon Sep 17 00:00:00 2001 From: wrowe Date: Mon, 16 Oct 2000 06:04:50 +0000 Subject: 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 --- time/unix/timestr.c | 4 ++-- time/win32/timestr.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'time') 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" }; -- cgit v1.2.1