Browse code

strcasecmp() requires #include <strings.h>

Originally committed as revision 14728 to svn://svn.ffmpeg.org/ffmpeg/trunk

Aurelien Jacobs authored on 2008/08/14 02:22:53
Showing 7 changed files
... ...
@@ -26,6 +26,7 @@
26 26
 #define closesocket close
27 27
 #endif
28 28
 #include <string.h>
29
+#include <strings.h>
29 30
 #include <stdlib.h>
30 31
 #include "libavutil/random.h"
31 32
 #include "libavutil/avstring.h"
... ...
@@ -28,6 +28,7 @@
28 28
 #include <sys/poll.h>
29 29
 #include <sys/time.h>
30 30
 #include <time.h>
31
+#include <strings.h>
31 32
 
32 33
 #include "libavformat/avformat.h"
33 34
 
... ...
@@ -30,6 +30,7 @@
30 30
 #define _LINUX_TIME_H 1
31 31
 #include <linux/videodev.h>
32 32
 #include <time.h>
33
+#include <strings.h>
33 34
 
34 35
 typedef struct {
35 36
     int fd;
... ...
@@ -37,6 +37,7 @@
37 37
 #include <asm/types.h>
38 38
 #include <linux/videodev2.h>
39 39
 #include <time.h>
40
+#include <strings.h>
40 41
 
41 42
 static const int desired_video_buffers = 256;
42 43
 
... ...
@@ -19,6 +19,7 @@
19 19
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 20
  */
21 21
 
22
+#include <strings.h>
22 23
 #include "libavutil/avstring.h"
23 24
 #include "libavcodec/mpegaudio.h"
24 25
 #include "libavcodec/mpegaudiodecheader.h"
... ...
@@ -24,6 +24,7 @@
24 24
 
25 25
 #include <sys/time.h>
26 26
 #include <unistd.h> /* for select() prototype */
27
+#include <strings.h>
27 28
 #include "network.h"
28 29
 #include "rtsp.h"
29 30
 
... ...
@@ -24,6 +24,7 @@
24 24
 #include "riff.h"
25 25
 #include <sys/time.h>
26 26
 #include <time.h>
27
+#include <strings.h>
27 28
 
28 29
 #undef NDEBUG
29 30
 #include <assert.h>