summaryrefslogtreecommitdiffstats
path: root/raul/Semaphore.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Semaphore.hpp')
-rw-r--r--raul/Semaphore.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/raul/Semaphore.hpp b/raul/Semaphore.hpp
index ee79ba7..e0fbf18 100644
--- a/raul/Semaphore.hpp
+++ b/raul/Semaphore.hpp
@@ -17,19 +17,19 @@
#ifndef RAUL_SEMAPHORE_HPP
#define RAUL_SEMAPHORE_HPP
-#include <chrono>
-#include <stdexcept>
-
#ifdef __APPLE__
# include <mach/mach.h>
#elif defined(_WIN32)
# include <windows.h>
#else
-# include <errno.h>
+# include <cerrno>
+# include <ctime>
# include <semaphore.h>
-# include <time.h>
#endif
+#include <chrono>
+#include <stdexcept>
+
namespace Raul {
/**