Просмотр исходного кода

#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
Diego Biurrun 17 лет назад
Родитель
Сommit
768a920572
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      libavutil/crc.h

+ 1 - 1
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;