diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-13 18:30:07 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-13 18:30:07 +0000 |
commit | 768a9205727498087e63b14826e0b21a3879f4a4 (patch) | |
tree | 267fb0e6ee45ce489cb83f38e0fd8bde04ec6107 /libavutil/crc.h | |
parent | a2338352befdbc79404dddce6659efffc786b6e5 (diff) | |
download | ffmpeg-768a9205727498087e63b14826e0b21a3879f4a4.tar.gz |
#include stddef.h instead of sys/types.h, the former is a standard C header.
Originally committed as revision 12435 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/crc.h')
-rw-r--r-- | libavutil/crc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/crc.h b/libavutil/crc.h index 28cb7c0219..d6b93c38d2 100644 --- a/libavutil/crc.h +++ b/libavutil/crc.h @@ -22,7 +22,7 @@ #define FFMPEG_CRC_H #include <stdint.h> -#include <sys/types.h> +#include <stddef.h> typedef uint32_t AVCRC; |