diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-25 17:36:48 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-25 17:36:48 +0000 |
commit | 692c315e3ae33212b441b17615715dfb9733852b (patch) | |
tree | 9f5f55bcf0bd26eab98c2d6481ed3015d8d8d037 | |
parent | 57be00bea7d66ea28caab6e32753bc167b7bccf1 (diff) | |
download | ffmpeg-692c315e3ae33212b441b17615715dfb9733852b.tar.gz |
Do not #include common.h without necessity.
This eliminates the need to work around common.h overriding certain system
functions which are required in this header.
Originally committed as revision 16776 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/mem.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavutil/mem.c b/libavutil/mem.c index 1b960f2911..45cd986ee1 100644 --- a/libavutil/mem.c +++ b/libavutil/mem.c @@ -25,12 +25,6 @@ */ #include "config.h" -#include "common.h" - -/* here we can use OS dependent allocation functions */ -#undef malloc -#undef free -#undef realloc #include <limits.h> #include <stdlib.h> |