summaryrefslogtreecommitdiff
path: root/core/host/task.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/host/task.c')
-rw-r--r--core/host/task.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/core/host/task.c b/core/host/task.c
index fa853dce60..31ea386f2e 100644
--- a/core/host/task.c
+++ b/core/host/task.c
@@ -5,6 +5,15 @@
/* Task scheduling / events module for Chrome EC operating system */
+#include <malloc.h>
+#include <pthread.h>
+#include <semaphore.h>
+#include <signal.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
#include "atomic.h"
#include "common.h"
#include "console.h"
@@ -14,16 +23,6 @@
#include "test_util.h"
#include "timer.h"
-#include <signal.h>
-#include <stdint.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include <malloc.h>
-#include <pthread.h>
-#include <semaphore.h>
-
#define SIGNAL_INTERRUPT SIGUSR1
struct emu_task_t {