From: Rich Felker Date: Fri, 28 Jun 2013 16:12:55 +0000 (-0400) Subject: fix breakage in last commit to strftime due to missing INT_MAX X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=062446a85db9b58b4900df82e17cb8c07ec50453 fix breakage in last commit to strftime due to missing INT_MAX that's what I get for changing a hard-coded threshold to a proper non-magic-number without testing. --- diff --git a/src/time/strftime.c b/src/time/strftime.c index ab1c6dcf..b60197df 100644 --- a/src/time/strftime.c +++ b/src/time/strftime.c @@ -2,6 +2,7 @@ #include #include #include +#include #include "__time.h" // FIXME: integer overflows