Commit 322a5bb4 authored by aurel's avatar aurel

strcasecmp() requires #include <strings.h>


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14728 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c5fb337e
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#define closesocket close #define closesocket close
#endif #endif
#include <string.h> #include <string.h>
#include <strings.h>
#include <stdlib.h> #include <stdlib.h>
#include "libavutil/random.h" #include "libavutil/random.h"
#include "libavutil/avstring.h" #include "libavutil/avstring.h"
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include <sys/poll.h> #include <sys/poll.h>
#include <sys/time.h> #include <sys/time.h>
#include <time.h> #include <time.h>
#include <strings.h>
#include "libavformat/avformat.h" #include "libavformat/avformat.h"
......
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#define _LINUX_TIME_H 1 #define _LINUX_TIME_H 1
#include <linux/videodev.h> #include <linux/videodev.h>
#include <time.h> #include <time.h>
#include <strings.h>
typedef struct { typedef struct {
int fd; int fd;
......
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
#include <asm/types.h> #include <asm/types.h>
#include <linux/videodev2.h> #include <linux/videodev2.h>
#include <time.h> #include <time.h>
#include <strings.h>
static const int desired_video_buffers = 256; static const int desired_video_buffers = 256;
......
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <strings.h>
#include "libavutil/avstring.h" #include "libavutil/avstring.h"
#include "libavcodec/mpegaudio.h" #include "libavcodec/mpegaudio.h"
#include "libavcodec/mpegaudiodecheader.h" #include "libavcodec/mpegaudiodecheader.h"
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include <sys/time.h> #include <sys/time.h>
#include <unistd.h> /* for select() prototype */ #include <unistd.h> /* for select() prototype */
#include <strings.h>
#include "network.h" #include "network.h"
#include "rtsp.h" #include "rtsp.h"
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include "riff.h" #include "riff.h"
#include <sys/time.h> #include <sys/time.h>
#include <time.h> #include <time.h>
#include <strings.h>
#undef NDEBUG #undef NDEBUG
#include <assert.h> #include <assert.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment