From 18fad22e302c83ff885f4a6b517b572da511cb8d Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Thu, 14 Nov 2013 12:46:53 +0100 Subject: [PATCH] make chardev_thread includes adhere to coding conventions --- sys/chardev_thread.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/sys/chardev_thread.c b/sys/chardev_thread.c index 06e21c71ab..e802b312a4 100644 --- a/sys/chardev_thread.c +++ b/sys/chardev_thread.c @@ -15,18 +15,20 @@ * @} */ -#include -#include -#include -#include - #include #include -#include -#include + +#include "kernel.h" +#include "irq.h" + +#include "thread.h" +#include "msg.h" + +#include "ringbuffer.h" +#include "posix_io.h" #define ENABLE_DEBUG (0) -#include +#include "debug.h" static int min(int a, int b) {