diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-24 14:55:30 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-24 14:55:30 +0000 |
commit | dfcb6b56f9e58106b6520af8c5fa6760556919eb (patch) | |
tree | c45d1cb1f0a9b77ea94a7415f713a3f939c3be5c /libavutil/mem.c | |
parent | da837937c6631ffd37f3bdc7c7d2ddd7658e4c13 (diff) | |
download | ffmpeg-dfcb6b56f9e58106b6520af8c5fa6760556919eb.tar.gz |
Directly #include a bunch of indirectly #included headers.
Originally committed as revision 16748 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/mem.c')
-rw-r--r-- | libavutil/mem.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/mem.c b/libavutil/mem.c index db3234a343..1b960f2911 100644 --- a/libavutil/mem.c +++ b/libavutil/mem.c @@ -24,6 +24,7 @@ * default memory allocator for libavutil. */ +#include "config.h" #include "common.h" /* here we can use OS dependent allocation functions */ @@ -31,7 +32,9 @@ #undef free #undef realloc +#include <limits.h> #include <stdlib.h> +#include <string.h> #if HAVE_MALLOC_H #include <malloc.h> #endif |