more gcc-3 compatibility: add putchar()

This commit is contained in:
Laurent Vivier 2005-05-26 22:43:10 +00:00
parent 4c98823894
commit 0c63c2cb52

View File

@ -254,4 +254,9 @@ int puts(const char * s)
return -1;
}
int putchar (int c)
{
return console_putchar(c);
}
#endif