From ec698b4e1aa70bcb9bddb0618a668051f93e6314 Mon Sep 17 00:00:00 2001 From: Hans Ulrich Niedermann Date: Wed, 14 Feb 2024 16:46:02 +0100 Subject: [PATCH] Include headers defining the used types As libavrdude-avrintel.h uses not only uint32_t and related types from stdint.h, but also size_t from stddef.h, we also need to #include the latter into libavrdude.h before libavrdude.h includes libavrdude-avrintel.h --- src/libavrdude.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libavrdude.h b/src/libavrdude.h index 413be677..1675b766 100644 --- a/src/libavrdude.h +++ b/src/libavrdude.h @@ -24,6 +24,7 @@ #include #include #include +#include #include #ifdef LIBAVRDUDE_INCLUDE_INTERNAL_HEADERS