aboutsummaryrefslogtreecommitdiff
path: root/kernel/kernel.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/kernel.c')
-rw-r--r--kernel/kernel.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/kernel/kernel.c b/kernel/kernel.c
index 6361218..47b08e5 100644
--- a/kernel/kernel.c
+++ b/kernel/kernel.c
@@ -19,13 +19,15 @@
* http://www.control.lth.se/Publication/hen+04t.html
*/
-#include <stdint.h>
-#include <stdlib.h>
-#include <string.h>
#include <avr/io.h>
#include <avr/interrupt.h>
#include <avr/power.h>
#include <avr/wdt.h>
+
+#include <stdint.h>
+#include <stdlib.h>
+#include <string.h>
+
#include "kernel.h"
#include "stack.h"
#include "queue.h"