From 062446a85db9b58b4900df82e17cb8c07ec50453 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 28 Jun 2013 12:12:55 -0400 Subject: 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. --- src/time/strftime.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/time') 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 -- cgit v1.2.1