Browse Source

id3v2enc: include strings.h for strcasecmp()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Michael Niedermayer 13 years ago
parent
commit
ce451c6b3a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libavformat/id3v2enc.c

+ 1 - 1
libavformat/id3v2enc.c

@@ -19,7 +19,7 @@
  */
 
 #include <stdint.h>
-
+#include <strings.h>
 #include "libavutil/avstring.h"
 #include "libavutil/dict.h"
 #include "libavutil/intreadwrite.h"