mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
openwsn: fix prototype for putchar
This commit is contained in:
parent
ccc4e3fc73
commit
e45424240b
@ -40,9 +40,11 @@ static int shell_readc(void)
|
||||
return c;
|
||||
}
|
||||
|
||||
static void shell_putchar(int c)
|
||||
static int shell_putchar(int c)
|
||||
{
|
||||
(void) putchar(c);
|
||||
|
||||
return c;
|
||||
}
|
||||
|
||||
int main(void) {
|
||||
|
Loading…
Reference in New Issue
Block a user