summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-05-27 23:05:11 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-05-27 23:05:11 +0000
commitdede50976b4df5228cdb789f4a17b96587b377c5 (patch)
treebc8c3160b0cd9de10b400a5d4aafed838f5fc27b /time
parent21211d613158e4f47bce1218db43f6579bac2db6 (diff)
downloadlibapr-dede50976b4df5228cdb789f4a17b96587b377c5.tar.gz
Fixup a couple of rename's missed APR_VAR_EXPORT->APR_EXPORT_VAR
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60110 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 aa65f534f..24f0c7a6b 100644
--- a/time/unix/timestr.c
+++ b/time/unix/timestr.c
@@ -57,11 +57,11 @@
#include <string.h>
-APR_VAR_EXPORT const char ap_month_snames[12][4] =
+APR_EXPORT_VAR const char ap_month_snames[12][4] =
{
"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
-APR_VAR_EXPORT const char ap_day_snames[7][4] =
+APR_EXPORT_VAR const char ap_day_snames[7][4] =
{
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
};
diff --git a/time/win32/timestr.c b/time/win32/timestr.c
index 1c118b07e..4a4ca5ba9 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 ap_month_snames[12][4] =
+APR_EXPORT_VAR const char ap_month_snames[12][4] =
{
"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
-APR_VAR_EXPORT const char ap_day_snames[7][4] =
+APR_EXPORT_VAR const char ap_day_snames[7][4] =
{
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
};