aboutsummaryrefslogtreecommitdiff
path: root/kernel/uart.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/uart.c')
-rw-r--r--kernel/uart.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/kernel/uart.c b/kernel/uart.c
index 92952ae..38e895c 100644
--- a/kernel/uart.c
+++ b/kernel/uart.c
@@ -19,11 +19,13 @@
#define BAUD 9600
#endif
-#include <stdint.h>
-#include <stdio.h>
#include <avr/io.h>
#include <avr/interrupt.h>
#include <util/setbaud.h> /* depends on BAUD and F_CPU */
+
+#include <stdint.h>
+#include <stdio.h>
+
#include "kernel.h"
#include "tasks.h"