From d9f86f6f708c7f5ae28ce466e3bd3db0b63bcd44 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Wed, 1 Aug 2018 18:46:08 +0200 Subject: [PATCH] memory: add missing include --- memory.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/memory.h b/memory.h index 110cf6a..7ae2c03 100644 --- a/memory.h +++ b/memory.h @@ -27,6 +27,8 @@ #ifndef GOT_MEMORY_H #define GOT_MEMORY_H +#include "sysincl.h" + /* Wrappers checking for errors */ extern void *Malloc(size_t size); extern void *Realloc(void *ptr, size_t size);