summaryrefslogtreecommitdiff
path: root/libavutil/hash.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-02-24 13:18:57 +0100
committerAnton Khirnov <anton@khirnov.net>2020-11-20 15:20:24 +0100
commit800feae5d65ef07910857e0417b63bd6e1d15288 (patch)
treeae6e7f080c41e79d7fa78a450c5267807bda839b /libavutil/hash.c
parente1c4a3ea7d2830a2e6c1e5212066c7995fffbdf2 (diff)
lavu: add missing stddef.h includes for size_t.
Diffstat (limited to 'libavutil/hash.c')
-rw-r--r--libavutil/hash.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/hash.c b/libavutil/hash.c
index 75edb6db78..d626c31181 100644
--- a/libavutil/hash.c
+++ b/libavutil/hash.c
@@ -17,6 +17,8 @@
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+
+#include <stddef.h>
#include <stdint.h>
#include "hash.h"