don't make so many clock_gettime syscalls
For all of the code that runs periodically for short periods of time,
making more than just 1 syscall to figure out what time it currently is
is pointless and a waste of CPU.
diff --git a/aos/common/controls/control_loop.h b/aos/common/controls/control_loop.h
index 0889b48..becb080 100644
--- a/aos/common/controls/control_loop.h
+++ b/aos/common/controls/control_loop.h
@@ -1,7 +1,7 @@
#ifndef AOS_CONTROL_LOOP_CONTROL_LOOP_H_
#define AOS_CONTROL_LOOP_CONTROL_LOOP_H_
-#include <cstring>
+#include <string.h>
#include "aos/common/type_traits.h"
#include "aos/common/queue.h"