From 9a0c479aeedc9c7beb60568e3449c75d7a2f7649 Mon Sep 17 00:00:00 2001 From: Dylan McKay Date: Fri, 7 Jul 2017 02:22:35 +1200 Subject: [PATCH] Add missing header file to 'sim_hex.h' 'size_t' is not defined in any of the header files included in 'sim_hex.h', even though it is used in there. You can see a list of all headers that define 'size_t' here http://en.cppreference.com/w/c/types/size_t --- simavr/sim/sim_hex.h | 1 + 1 file changed, 1 insertion(+) diff --git a/simavr/sim/sim_hex.h b/simavr/sim/sim_hex.h index 4b3fe76..67ecc77 100644 --- a/simavr/sim/sim_hex.h +++ b/simavr/sim/sim_hex.h @@ -24,6 +24,7 @@ #define __SIM_HEX_H___ #include +#include #ifdef __cplusplus extern "C" { -- 2.39.5