From 8b491f1499b8636efe8a99d940f0c87b9a3ba9ae Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 23 Aug 2013 08:11:43 -0400 Subject: fix missing string.h in strftime.c (needed by new strftime code) this bug was masked by local experimental CFLAGS in my config.mak. --- src/time/strftime.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/time/strftime.c b/src/time/strftime.c index 6b8a33f5..24000f3b 100644 --- a/src/time/strftime.c +++ b/src/time/strftime.c @@ -1,5 +1,6 @@ #include #include +#include #include #include #include -- cgit v1.2.1