1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00
1999-08-31  Ulrich Drepper  <drepper@cygnus.com>

	* time/strftime.c (my_strftime): Remove unneeded variable len.

	* time/strptime.c: Undo last change.
This commit is contained in:
Ulrich Drepper
1999-08-31 07:40:00 +00:00
parent 4b10dd6c19
commit a4f4b72b80
5 changed files with 11 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
1999-08-31 Ulrich Drepper <drepper@cygnus.com>
* time/strftime.c (my_strftime): Remove unneeded variable len.
* time/strptime.c: Undo last change.
1999-08-30 Ulrich Drepper <drepper@cygnus.com>
* locale/Makefile (distribute): Add iso-639.def and iso-3166.def.

View File

@@ -1,3 +1,7 @@
1999-08-31 Ulrich Drepper <drepper@cygnus.com>
* charmaps/ISO-8859-15: Remove duplicate <OC>.
1999-08-16 Ulrich Drepper <drepper@cygnus.com>
* charmaps/CP1258: Remove spurious <percent-sign/> entry.

View File

@@ -265,7 +265,6 @@ CHARMAP
<SE> /xA7 <U00A7> SECTION SIGN
<s<> /xA8 <U0161> LATIN SMALL LETTER S WITH CARON
<Co> /xA9 <U00A9> COPYRIGHT SIGN
<OC> /xA9 <U00A9> COPYRIGHT SIGN
<-a> /xAA <U00AA> FEMININE ORDINAL INDICATOR
<<<> /xAB <U00AB> LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
<NO> /xAC <U00AC> NOT SIGN

View File

@@ -1202,7 +1202,6 @@ my_strftime (s, maxsize, format, tp ut_argument)
/* The wide name is after the single byte name and
format. */
char *tcp = strchr (era->name_fmt, '\0') + 1;
size_t len;
subfmt = (wchar_t *) (strchr (tcp, '\0') + 1);
subfmt = wcschr (subfmt, L'\0') + 1;
# else

View File

@@ -156,6 +156,7 @@ localtime_r (t, tp)
#ifdef _LIBC
/* 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 weekday_name (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (DAY_1)].string)