From 6be988383b1adba2f9f92724ae3e3d9a9545bc5a Mon Sep 17 00:00:00 2001 From: Freddie Chopin Date: Sat, 13 Sep 2014 08:58:00 +0200 Subject: [PATCH] libc/time/month_lengths.c: use proper (as in original patch) name for array - "__month_lengths" instead of "month_lengths" --- newlib/libc/time/month_lengths.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newlib/libc/time/month_lengths.c b/newlib/libc/time/month_lengths.c index 764e700..57f70eb 100644 --- a/newlib/libc/time/month_lengths.c +++ b/newlib/libc/time/month_lengths.c @@ -8,7 +8,7 @@ #include "local.h" -_CONST int month_lengths[2][MONSPERYEAR] = { +_CONST int __month_lengths[2][MONSPERYEAR] = { {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31} } ; -- 1.8.1.msysgit.1