mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-02 04:32:24 +00:00
Moved Sys_Printf to sys_win.c.
This commit is contained in:
parent
b34a867ec0
commit
50529263fb
1 changed files with 0 additions and 19 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue