From 77652a6aaff5c06267803f3770f8a613c7252171 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 25 Jan 2009 22:40:43 +0000 Subject: [PATCH] C files should #include the header files of the same name. Originally committed as revision 16792 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/log.c | 1 + libavutil/mem.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/libavutil/log.c b/libavutil/log.c index 9248752a55..5fec3328c0 100644 --- a/libavutil/log.c +++ b/libavutil/log.c @@ -25,6 +25,7 @@ */ #include "avutil.h" +#include "log.h" int av_log_level = AV_LOG_INFO; diff --git a/libavutil/mem.c b/libavutil/mem.c index 45cd986ee1..5413010680 100644 --- a/libavutil/mem.c +++ b/libavutil/mem.c @@ -33,6 +33,8 @@ #include #endif +#include "mem.h" + /* you can redefine av_malloc and av_free in your project to use your memory allocator. You do not need to suppress this file because the linker will do it automatically */ -- GitLab