don't use void!

This commit is contained in:
ceriel 1987-03-12 22:23:17 +00:00
parent a03714dc32
commit 844b170d0e

View File

@ -7,6 +7,6 @@
No_Mem()
{
(void) sys_write(2, "Out of memory\n", 14);
sys_write(2, "Out of memory\n", 14);
sys_stop(S_EXIT);
}