1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

test_shell: fix includes

malloc.h is not needed, apply coding conventions to others
This commit is contained in:
Ludwig Ortmann 2014-03-01 09:54:09 +01:00
parent 2562f36f47
commit 3171653e5d

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)