From f4465cd21b14f339ebd035b0a8d2effb6b6c970c Mon Sep 17 00:00:00 2001 From: Denys Berkovskyy Date: Fri, 17 Nov 2017 03:29:42 +0000 Subject: [PATCH] Fix inclusion of standard headers on non-linux systems --- src/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index ad87adc..91a3afe 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -25,8 +25,10 @@ GNU General Public License for more details. #include #include #include -#ifdef OS_LINUX +#ifdef HAVE_STDLIB_H #include +#endif +#ifdef HAVE_STRING_H #include #endif #include "scsiencrypt.h"