From 6b774df92e2d9ac34cbef23c7296f2232b49affe Mon Sep 17 00:00:00 2001 From: funbiscuit Date: Sat, 29 May 2021 19:09:38 +0300 Subject: [PATCH 1/2] Fix missing header for size_t --- src/binn.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/binn.h b/src/binn.h index 381b96b..a882cd5 100644 --- a/src/binn.h +++ b/src/binn.h @@ -7,6 +7,8 @@ #ifndef BINN_H #define BINN_H +#include + #ifdef __cplusplus extern "C" { #endif From 31ce5f44e2f6977f493eb21f94aaf215d71bacb5 Mon Sep 17 00:00:00 2001 From: Sviatoslav Kokurin Date: Wed, 21 Feb 2024 14:43:22 +0300 Subject: [PATCH 2/2] Fix --- src/binn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/binn.h b/src/binn.h index a882cd5..143dcb4 100644 --- a/src/binn.h +++ b/src/binn.h @@ -7,12 +7,12 @@ #ifndef BINN_H #define BINN_H -#include - #ifdef __cplusplus extern "C" { #endif +#include + #define BINN_VERSION "3.0.0" /* using semantic versioning */ #ifndef NULL