From 60de2664174bc5d6ab4c8831b3318189e3889e00 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 15 Aug 2020 14:04:28 -0700 Subject: [PATCH] fix: use of size_t in agxbuf.h with no definition This worked so far because files #including this always included something else that brought in stddef.h prior to #including agxbuf.h --- lib/cgraph/agxbuf.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/cgraph/agxbuf.h b/lib/cgraph/agxbuf.h index 6a7bada96..deb2e8e9f 100644 --- a/lib/cgraph/agxbuf.h +++ b/lib/cgraph/agxbuf.h @@ -18,6 +18,8 @@ extern "C" { #ifndef AGXBUF_H #define AGXBUF_H +#include + #ifdef _WIN32 # ifdef EXPORT_AGXBUF # define AGXBUF_API __declspec(dllexport) -- 2.40.0