Add standalone_months field to libc strftime().

Replicate my change 722a5c0462f38827f4097065bfc3826b9e0e9fb4 into
bionic in an attempt to fix the build.
This commit is contained in:
Eric Fischer
2009-05-15 13:33:20 -07:00
parent a0508577c9
commit a48fa7f4de
2 changed files with 15 additions and 4 deletions

View File

@@ -83,6 +83,7 @@ extern size_t strftime(char *s, size_t max, const char *format, const struc
struct strftime_locale {
const char * mon[12];
const char * month[12];
const char * standalone_month[12];
const char * wday[7];
const char * weekday[7];
const char * X_fmt;