From df052fadc5d95cc5312a3aff62b32993039056df Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 23 May 2002 18:54:59 +0000 Subject: Cleanup slightly --- libc/misc/time/asc_conv.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'libc') diff --git a/libc/misc/time/asc_conv.c b/libc/misc/time/asc_conv.c index f5ab0a615..50c7e0834 100644 --- a/libc/misc/time/asc_conv.c +++ b/libc/misc/time/asc_conv.c @@ -1,7 +1,9 @@ - #include -#include +#include +#include #include +#include + /* * Internal ascii conversion routine, avoid use of printf, it's a bit big! */ @@ -25,13 +27,13 @@ #ifdef __UCLIBC_HAS_LOCALE__ /* This is defined in locale/C-time.c in the GNU libc. */ extern const struct locale_data _nl_C_LC_TIME; -extern const unsigned short int __mon_yday[2][13]; -# define __ab_weekday_name \ - (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABDAY_1)].string) -# define __ab_month_name (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABMON_1)].string) +#define __ab_weekday_name(DAY) (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABDAY_1)+(DAY)].string) +#define __ab_month_name(MON) (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABMON_1)+(MON)].string) #else extern char const __ab_weekday_name[][4]; extern char const __ab_month_name[][4]; +#define __ab_weekday_name(DAY) (__ab_weekday_name[DAY]) +#define __ab_month_name(MON) (__ab_month_name[MON]) #endif void __asctime(register char *buffer, struct tm *ptm) @@ -45,11 +47,11 @@ void __asctime(register char *buffer, struct tm *ptm) memcpy(buffer, template, sizeof(template)); if ((ptm->tm_wday >= 0) && (ptm->tm_wday <= 6)) { - memcpy(buffer, __ab_weekday_name[ptm->tm_wday], 3); + memcpy(buffer, __ab_weekday_name(ptm->tm_wday), 3); } if ((ptm->tm_mon >= 0) && (ptm->tm_mon <= 11)) { - memcpy(buffer + 4, __ab_month_name[ptm->tm_mon], 3); + memcpy(buffer + 4, __ab_month_name(ptm->tm_mon), 3); } tm_field[0] = ptm->tm_mday; -- cgit v1.2.3