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

Merge pull request #7005 from OTAkeys/pr/fix_shell_no_echo

sys/shell: fix build when SHELL_NO_ECHO is defined
This commit is contained in:
Alexandre Abadie 2017-05-11 19:38:59 +02:00 committed by GitHub
commit d347ec04f5

View File

@ -32,7 +32,7 @@
#include "shell.h"
#include "shell_commands.h"
#ifndef SHELL_NO_ECHO
#if !defined(SHELL_NO_ECHO) || !defined(SHELL_NO_PROMPT)
#ifdef MODULE_NEWLIB
/* use local copy of putchar, as it seems to be inlined,
* enlarging code by 50% */