core: Add missing library in system-path.cc

fixes error: use of undeclared identifier 'memset'; did you mean 'wmemset'?
This commit is contained in:
André Apitzsch
2023-01-16 13:38:08 +01:00
committed by Tom Henderson
parent 82b6fe67aa
commit 16e725fd96

View File

@@ -61,6 +61,7 @@ namespace fs = std::experimental::filesystem;
#endif
#ifdef __linux__
#include <cstring>
#include <unistd.h>
#endif