diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2007-07-02 07:43:23 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2007-07-02 07:43:23 +0000 |
commit | 0f4e816582bd7e75ad384103fa5440ef6ed87530 (patch) | |
tree | cf6a291726d240030fe180f6bfe6324f312bba1b /cmdutils.c | |
parent | d3b7406c6fd53707d00f9c6f49d842d17bc840a2 (diff) | |
download | ffmpeg-0f4e816582bd7e75ad384103fa5440ef6ed87530.tar.gz |
to be able to compile without HAVE_AV_CONFIG_H
patch by Ronald S. Bultje: [rsbultje gmail com]
original thread: [FFmpeg-devel] ffmpeg.c/cmdutils.c compilation
date: 06/23/2007 03:15 AM
Originally committed as revision 9453 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmdutils.c b/cmdutils.c index 1557aaac4c..4d153b79ba 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -19,6 +19,10 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <string.h> +#include <stdlib.h> +#include <errno.h> + #include "avformat.h" #include "cmdutils.h" #include "avstring.h" |