Once files moved to aos folder and files updated accordingly
Change-Id: Idd26fca1d4dc15407e92859400e1a15a8a142ec3
diff --git a/aos/linux_code/starter/BUILD b/aos/linux_code/starter/BUILD
index ec6ce7f..74af77d 100644
--- a/aos/linux_code/starter/BUILD
+++ b/aos/linux_code/starter/BUILD
@@ -18,7 +18,7 @@
'//third_party/libevent',
'//aos/common/logging',
'//aos/common/logging:implementations',
- '//aos/common:once',
+ '//aos:once',
'//aos/common:time',
'//aos/common/libc:aos_strsignal',
'//aos/common/util:run_command',
diff --git a/aos/linux_code/starter/starter.cc b/aos/linux_code/starter/starter.cc
index 57d90dd..62e540b 100644
--- a/aos/linux_code/starter/starter.cc
+++ b/aos/linux_code/starter/starter.cc
@@ -29,14 +29,14 @@
#include "third_party/libevent/event.h"
-#include "aos/common/logging/logging.h"
-#include "aos/common/logging/implementations.h"
-#include "aos/linux_code/init.h"
-#include "aos/common/unique_malloc_ptr.h"
-#include "aos/common/time.h"
-#include "aos/common/once.h"
#include "aos/common/libc/aos_strsignal.h"
+#include "aos/common/logging/implementations.h"
+#include "aos/common/logging/logging.h"
+#include "aos/common/time.h"
+#include "aos/common/unique_malloc_ptr.h"
#include "aos/common/util/run_command.h"
+#include "aos/linux_code/init.h"
+#include "aos/once.h"
// This is the main piece of code that starts all of the rest of the code and
// restarts it when the binaries are modified.