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/v4l2.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/v4l2.c')
-rw-r--r-- | libavdevice/v4l2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index 0b03640e7d..81875f6b54 100644 --- a/libavdevice/v4l2.c +++ b/libavdevice/v4l2.c @@ -37,6 +37,7 @@ #include <asm/types.h> #include <linux/videodev2.h> #include <time.h> +#include <strings.h> static const int desired_video_buffers = 256; |