diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-08-13 17:22:53 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-08-13 17:22:53 +0000 |
commit | ea452b54f0f767847ff3e7c1d59f439b2fd80cbb (patch) | |
tree | cd391262ead9587bdd478f5787929ea9e5987df3 /libavdevice/v4l.c | |
parent | 5af4f1f3e3d8a219aa2f0b57e2b8152cea31aaf3 (diff) | |
download | ffmpeg-ea452b54f0f767847ff3e7c1d59f439b2fd80cbb.tar.gz |
strcasecmp() requires #include <strings.h>
Originally committed as revision 14728 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavdevice/v4l.c')
-rw-r--r-- | libavdevice/v4l.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavdevice/v4l.c b/libavdevice/v4l.c index de5080c85e..03694e8155 100644 --- a/libavdevice/v4l.c +++ b/libavdevice/v4l.c @@ -30,6 +30,7 @@ #define _LINUX_TIME_H 1 #include <linux/videodev.h> #include <time.h> +#include <strings.h> typedef struct { int fd; |