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
This commit is contained in:
Hans Ulrich Niedermann
2024-02-14 16:46:02 +01:00
parent df7c495fb7
commit ec698b4e1a

View File

@@ -24,6 +24,7 @@
#include <stdio.h>
#include <limits.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#ifdef LIBAVRDUDE_INCLUDE_INTERNAL_HEADERS