Moved Sys_Printf to sys_win.c.

This commit is contained in:
Dabb 2000-08-17 12:36:55 +00:00
parent b34a867ec0
commit 50529263fb

View file

@ -132,24 +132,6 @@ char *Sys_ConsoleInput (void)
return NULL; return NULL;
} }
/*
================
Sys_Printf
================
*/
void Sys_Printf (char *fmt, ...)
{
va_list argptr;
if (sys_nostdout->value)
return;
va_start (argptr,fmt);
vprintf (fmt,argptr);
va_end (argptr);
}
/* /*
================ ================
Sys_Quit Sys_Quit
@ -160,7 +142,6 @@ void Sys_Quit (void)
exit (0); exit (0);
} }
/* /*
============= =============
Sys_Init Sys_Init