# HG changeset patch # User diego # Date 1232808930 0 # Node ID e0bf946f7d23c4680e80d13586b191d742e9cf07 # Parent 96a4579347409457aeb34c3abe4c348bd3e8f696 Directly #include a bunch of indirectly #included headers. diff -r 96a457934740 -r e0bf946f7d23 mathematics.c --- a/mathematics.c Wed Jan 21 23:55:51 2009 +0000 +++ b/mathematics.c Sat Jan 24 14:55:30 2009 +0000 @@ -23,6 +23,7 @@ * Miscellaneous math routines and tables. */ +#include #include "common.h" #include "mathematics.h" diff -r 96a457934740 -r e0bf946f7d23 mem.c --- a/mem.c Wed Jan 21 23:55:51 2009 +0000 +++ b/mem.c Sat Jan 24 14:55:30 2009 +0000 @@ -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 #include +#include #if HAVE_MALLOC_H #include #endif diff -r 96a457934740 -r e0bf946f7d23 mem.h --- a/mem.h Wed Jan 21 23:55:51 2009 +0000 +++ b/mem.h Sat Jan 24 14:55:30 2009 +0000 @@ -26,6 +26,7 @@ #ifndef AVUTIL_MEM_H #define AVUTIL_MEM_H +#include "config.h" #include "common.h" #if defined(__ICC) || defined(__SUNPRO_C) diff -r 96a457934740 -r e0bf946f7d23 rational.c --- a/rational.c Wed Jan 21 23:55:51 2009 +0000 +++ b/rational.c Sat Jan 24 14:55:30 2009 +0000 @@ -25,6 +25,7 @@ * @author Michael Niedermayer */ +#include //#include #include