summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/kernel-unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/kernel-unix.c')
-rw-r--r--firmware/target/hosted/kernel-unix.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/target/hosted/kernel-unix.c b/firmware/target/hosted/kernel-unix.c
index a0167d46c5..e3c492a8cc 100644
--- a/firmware/target/hosted/kernel-unix.c
+++ b/firmware/target/hosted/kernel-unix.c
@@ -26,8 +26,10 @@
26#include <errno.h> 26#include <errno.h>
27#include <unistd.h> 27#include <unistd.h>
28#include <pthread.h> 28#include <pthread.h>
29
29#include "config.h" 30#include "config.h"
30#include "system.h" 31#include "system.h"
32#include "kernel.h"
31#include "button.h" 33#include "button.h"
32#include "audio.h" 34#include "audio.h"
33#include "panic.h" 35#include "panic.h"
@@ -165,4 +167,3 @@ void timer_unregister(void)
165 timer_delete(timer_tid); 167 timer_delete(timer_tid);
166 timer_prio = -1; 168 timer_prio = -1;
167} 169}
168