Replace use of deprecated C Standard library headers in C++ code.
Change-Id: I9fa6630c7e4bdb2897df34d417635d8c7d8253bc
Signed-off-by: Tyler Chatow <tchatow@gmail.com>
diff --git a/aos/mutex/mutex_test.cc b/aos/mutex/mutex_test.cc
index c0ec66e..bd8a548 100644
--- a/aos/mutex/mutex_test.cc
+++ b/aos/mutex/mutex_test.cc
@@ -1,14 +1,12 @@
#include "aos/mutex/mutex.h"
-#include <math.h>
#include <pthread.h>
#include <sched.h>
#include <chrono>
+#include <cmath>
#include <thread>
-#include "gtest/gtest.h"
-
#include "aos/die.h"
#include "aos/ipc_lib/aos_sync.h"
#include "aos/ipc_lib/core_lib.h"
@@ -16,6 +14,7 @@
#include "aos/testing/test_shm.h"
#include "aos/time/time.h"
#include "aos/util/death_test_log_implementation.h"
+#include "gtest/gtest.h"
namespace aos {
namespace testing {