Added additional newlib stubs due to failing build (issue #36)

pull/42/head
Simon Kueppers 2023-09-10 18:52:26 +02:00
rodzic 2ff6a934a6
commit 09bb15d94a
1 zmienionych plików z 28 dodań i 0 usunięć

Wyświetl plik

@ -145,6 +145,34 @@ int _write(int file, char *ptr, int len)
return len; return len;
} }
void _close(void)
{
}
void _lseek(void)
{
}
void _read(void)
{
}
void _fstat(void)
{
}
void _getpid(void)
{
}
void _isatty(void)
{
}
void _kill(void)
{
}
int main(void) int main(void)
{ {
SystemReset(); SystemReset();