diff options
Diffstat (limited to 'time')
-rw-r--r-- | time/strftime_l.c | 2 | ||||
-rw-r--r-- | time/strptime_l.c | 2 | ||||
-rw-r--r-- | time/time.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/time/strftime_l.c b/time/strftime_l.c index eb3efb8129..439b971747 100644 --- a/time/strftime_l.c +++ b/time/strftime_l.c @@ -284,7 +284,7 @@ static const CHAR_T zeroes[16] = /* "0000000000000000" */ # undef _NL_CURRENT # define _NL_CURRENT(category, item) \ (current->values[_NL_ITEM_INDEX (item)].string) -# define LOCALE_PARAM , __locale_t loc +# define LOCALE_PARAM , locale_t loc # define LOCALE_ARG , loc # define HELPER_LOCALE_ARG , current #else diff --git a/time/strptime_l.c b/time/strptime_l.c index dbf4606982..185619e142 100644 --- a/time/strptime_l.c +++ b/time/strptime_l.c @@ -181,7 +181,7 @@ static const unsigned short int __mon_yday[2][13] = # undef _NL_CURRENT_WORD # define _NL_CURRENT_WORD(category, item) \ (current->values[_NL_ITEM_INDEX (item)].word) -# define LOCALE_PARAM , __locale_t locale +# define LOCALE_PARAM , locale_t locale # define LOCALE_ARG , locale # define HELPER_LOCALE_ARG , current # define ISSPACE(Ch) __isspace_l (Ch, locale) diff --git a/time/time.h b/time/time.h index 17cc1e6614..f12a4613fc 100644 --- a/time/time.h +++ b/time/time.h @@ -104,13 +104,13 @@ extern char *strptime (const char *__restrict __s, extern size_t strftime_l (char *__restrict __s, size_t __maxsize, const char *__restrict __format, const struct tm *__restrict __tp, - __locale_t __loc) __THROW; + locale_t __loc) __THROW; #endif #ifdef __USE_GNU extern char *strptime_l (const char *__restrict __s, const char *__restrict __fmt, struct tm *__tp, - __locale_t __loc) __THROW; + locale_t __loc) __THROW; #endif |