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

Merge pull request #823 from LudwigOrtmann/test_shell

test_shell: fix includes
This commit is contained in:
Ludwig Ortmann 2014-03-01 10:15:36 +01:00
commit 33af2b7f14

View File

@ -20,11 +20,11 @@
#include <stdio.h>
#include <string.h>
#include <malloc.h>
#include <shell_commands.h>
#include <posix_io.h>
#include <shell.h>
#include <board_uart0.h>
#include "shell_commands.h"
#include "posix_io.h"
#include "shell.h"
#include "board_uart0.h"
#define SHELL_BUFSIZE (UART0_BUFSIZE)