1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

make includes coding convention compliant

This commit is contained in:
Ludwig Ortmann 2013-10-26 22:11:29 +02:00
parent 6ebe1bfdc7
commit 8d657b0ff6

View File

@ -1,11 +1,13 @@
#include <chardev_thread.h>
#include <ringbuffer.h>
#include <stdio.h> #include <stdio.h>
#include <thread.h>
#include <msg.h>
#include <posix_io.h>
#include <board_uart0.h> #include "chardev_thread.h"
#include "ringbuffer.h"
#include "thread.h"
#include "msg.h"
#include "posix_io.h"
#include "irq.h"
#include "board_uart0.h"
#define UART0_BUFSIZE (32) #define UART0_BUFSIZE (32)
#define UART0_STACKSIZE (MINIMUM_STACK_SIZE + 256) #define UART0_STACKSIZE (MINIMUM_STACK_SIZE + 256)