1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

#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
This commit is contained in:
Diego Biurrun 2008-03-13 18:30:07 +00:00
parent a2338352be
commit 768a920572

View File

@ -22,7 +22,7 @@
#define FFMPEG_CRC_H
#include <stdint.h>
#include <sys/types.h>
#include <stddef.h>
typedef uint32_t AVCRC;