diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-25 21:54:05 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-25 21:54:05 +0000 |
commit | ed0fd852a3a5cfb208a33f17fa9eb702573c57af (patch) | |
tree | 41f82ee60857806be4340a41cc10ae73335c9be9 | |
parent | c79de5c07b889e40844c5363cadb51d79fd4ff6f (diff) | |
download | ffmpeg-ed0fd852a3a5cfb208a33f17fa9eb702573c57af.tar.gz |
Add required limits.h header.
Originally committed as revision 16789 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index 3c03bfbf79..3fa14472c2 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -30,6 +30,7 @@ # define NDEBUG #endif +#include <limits.h> #include <stdint.h> #include <stddef.h> #include <assert.h> |