From df9074db6e68fbf7847fab0bc33b3a3c9a94620d Mon Sep 17 00:00:00 2001 From: rofl0r Date: Sat, 12 Sep 2020 15:54:48 +0100 Subject: [PATCH] vector.h: missing include for ssize_t --- src/vector.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vector.h b/src/vector.h index ef8f953..45a78d4 100644 --- a/src/vector.h +++ b/src/vector.h @@ -21,6 +21,8 @@ #ifndef _VECTOR_H #define _VECTOR_H +#include + /* * We're using a typedef here to "hide" the implementation details of the * vector. Sure, it's a pointer, but the struct is hidden in the C file.