mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-17 04:07:23 +00:00
12 lines
214 B
C
12 lines
214 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;
|
|
}
|