diff options
author | Chip <szarlada@freemail.hu> | 2004-06-09 01:57:47 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-06-09 01:57:47 +0000 |
commit | f777e5de84d84ad36edf64734f09f0d0d0e27652 (patch) | |
tree | 991e3190c6e06c9d645bb13a40fcdfcef65e6581 /libavcodec | |
parent | 573ab01eb747801256c8e1fbebb1075911ad07ca (diff) | |
download | ffmpeg-f777e5de84d84ad36edf64734f09f0d0d0e27652.tar.gz |
make ffmpeg/libavcodec/liba52/crc.c compile on systems where no inttypes.h patch by (Chip <szarlada at freemail dot hu>)
Originally committed as revision 3210 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/liba52/crc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/liba52/crc.c b/libavcodec/liba52/crc.c index 6698155bd4..0487a8804a 100644 --- a/libavcodec/liba52/crc.c +++ b/libavcodec/liba52/crc.c @@ -23,7 +23,7 @@ #include <stdlib.h> #include <stdio.h> -#include <inttypes.h> +#include "../common.h" static const uint16_t crc_lut[256] = { |