From 6ed7a3484d5adf0d16a1a6ba59f5ab992b71457f Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Thu, 16 Apr 2009 20:35:38 -0300 Subject: [PATCH] Add missing include --- test/prio-test.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/prio-test.cpp b/test/prio-test.cpp index 613d111..af5af5e 100644 --- a/test/prio-test.cpp +++ b/test/prio-test.cpp @@ -2,10 +2,12 @@ #include #include #include +#include using eventxx::dispatcher; -#define OSASSERT(func, ...) if (func(__VA_ARGS__) == -1) { perror(#func "()"); exit(1); } +#define OSASSERT(func, ...) \ + if (func(__VA_ARGS__) == -1) { perror(#func "()"); std::exit(1); } struct handler { -- 2.43.0