1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 07:51:19 +01:00

make chardev_thread includes adhere to coding conventions

This commit is contained in:
Ludwig Ortmann 2013-11-14 12:46:53 +01:00
parent 4b0220ea35
commit 18fad22e30

View File

@ -15,18 +15,20 @@
* @}
*/
#include <thread.h>
#include <kernel.h>
#include <msg.h>
#include <ringbuffer.h>
#include <stdio.h>
#include <errno.h>
#include <irq.h>
#include <posix_io.h>
#include "kernel.h"
#include "irq.h"
#include "thread.h"
#include "msg.h"
#include "ringbuffer.h"
#include "posix_io.h"
#define ENABLE_DEBUG (0)
#include <debug.h>
#include "debug.h"
static int min(int a, int b)
{