From f7cdcd13a2597288a1627e095eb43eb30954462d Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Sun, 12 Apr 2020 17:44:09 +0200 Subject: [PATCH] This is prefixed with std it seems. --- src/run_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run_cmd.cpp b/src/run_cmd.cpp index 9dbc2a0..f7f7d99 100644 --- a/src/run_cmd.cpp +++ b/src/run_cmd.cpp @@ -86,6 +86,6 @@ namespace duck::detail { namespace duck { int run_cmd_retcode (const char* command) { assert(command); - return system(command); + return std::system(command); } } //namespace duck