summaryrefslogtreecommitdiff
path: root/src/time
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-08-23 08:11:43 -0400
committerRich Felker <dalias@aerifal.cx>2013-08-23 08:11:43 -0400
commit8b491f1499b8636efe8a99d940f0c87b9a3ba9ae (patch)
tree7e3e6d76cb01dbc9f69dc020c5731f02e3accd79 /src/time
parent6fdaaf251d355ed5ce79a6998f40e00dab888e3e (diff)
downloadmusl-8b491f1499b8636efe8a99d940f0c87b9a3ba9ae.tar.gz
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')
-rw-r--r--src/time/strftime.c1
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>