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

boards: chronos: add dummy write() implementation

This commit is contained in:
Kaspar Schleiser 2015-11-19 13:13:54 +01:00
parent 04bc408931
commit 8d613ceb53

View File

@ -40,3 +40,8 @@ int getchar(void)
/* dummy implementation */
return EOF;
}
ssize_t write(int fildes, const void *buf, size_t nbyte)
{
return -1;
}