Minor cleanup.

This commit is contained in:
Andreas Kling 2018-10-31 00:25:55 +01:00
commit 555c10a1f8
Notes: sideshowbarker 2024-07-19 18:36:12 +09:00
3 changed files with 5 additions and 6 deletions

View file

@ -12,7 +12,6 @@ extern "C" {
int putchar(int ch)
{
write(0, &ch, 1);
//Syscall::invoke(Syscall::PutCharacter, ch);
return (byte)ch;
}