From: Rich Felker Date: Fri, 23 Aug 2013 12:11:43 +0000 (-0400) Subject: fix missing string.h in strftime.c (needed by new strftime code) X-Git-Tag: v0.9.13~22 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8b491f1499b8636efe8a99d940f0c87b9a3ba9ae;p=oweals%2Fmusl.git fix missing string.h in strftime.c (needed by new strftime code) this bug was masked by local experimental CFLAGS in my config.mak. --- 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