mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 03:05:15 +00:00
12 lines
216 B
C
12 lines
216 B
C
#include <sys/types.h>
|
|
|
|
__attribute__((weak)) ssize_t _consolewrite(int fd, const void *buf, size_t count)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
__attribute__((weak)) ssize_t _consoleread(int fd, void *buf, size_t count)
|
|
{
|
|
return -1;
|
|
}
|