From 04b403ff16dd00f7d2ca46b122d551f5b054d678 Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Fri, 25 Oct 2019 12:37:09 +0200 Subject: [PATCH] _FORTIFY_SOURCE needs string.h --- include/common.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/common.h b/include/common.h index 39ea9016d..d4b54936d 100644 --- a/include/common.h +++ b/include/common.h @@ -36,6 +36,9 @@ #define _FILE_OFFSET_BITS 64 #endif +// _FORTIFY_SOURCE needs string.h +#include + #ifndef _FORTIFY_SOURCE #define _FORTIFY_SOURCE 2 #endif