diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-08-23 08:11:43 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-08-23 08:11:43 -0400 |
commit | 8b491f1499b8636efe8a99d940f0c87b9a3ba9ae (patch) | |
tree | 7e3e6d76cb01dbc9f69dc020c5731f02e3accd79 /src/time/strftime.c | |
parent | 6fdaaf251d355ed5ce79a6998f40e00dab888e3e (diff) | |
download | musl-8b491f1499b8636efe8a99d940f0c87b9a3ba9ae.tar.gz musl-8b491f1499b8636efe8a99d940f0c87b9a3ba9ae.tar.xz musl-8b491f1499b8636efe8a99d940f0c87b9a3ba9ae.zip |
fix missing string.h in strftime.c (needed by new strftime code)
this bug was masked by local experimental CFLAGS in my config.mak.
Diffstat (limited to 'src/time/strftime.c')
-rw-r--r-- | src/time/strftime.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 <stdio.h> #include <stdlib.h> +#include <string.h> #include <langinfo.h> #include <locale.h> #include <time.h> |