From 6f175e0b9b7d7c5efdfb8775f0094f7a0c53b948 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Tue, 7 Aug 2018 18:04:32 -0700 Subject: [PATCH] Fix CI --- test/cpp-utils/process/exit_status.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/cpp-utils/process/exit_status.cpp b/test/cpp-utils/process/exit_status.cpp index bd114187..b4d7e73d 100644 --- a/test/cpp-utils/process/exit_status.cpp +++ b/test/cpp-utils/process/exit_status.cpp @@ -1,11 +1,12 @@ // This is a small executable that prints its first argument and exits with the exit status in its second argument #include +#include int main(int argc, char* argv[]) { if (argc != 3) { std::cerr << "Wrong number of arguments" << std::endl; - abort(); + std::abort(); } std::cout << argv[1];