Pārlūkot izejas kodu

fix missing string.h in strftime.c (needed by new strftime code)

this bug was masked by local experimental CFLAGS in my config.mak.
Rich Felker 11 gadi atpakaļ
vecāks
revīzija
8b491f1499
1 mainītis faili ar 1 papildinājumiem un 0 dzēšanām
  1. 1 0
      src/time/strftime.c

+ 1 - 0
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>