mirror of
https://github.com/DrBeef/Raze.git
synced 2024-12-15 23:21:21 +00:00
17 lines
301 B
C
17 lines
301 B
C
|
// Compatibility declarations for the tools to avoid linking to the entire engine.
|
||
|
|
||
|
#include "compat.h"
|
||
|
|
||
|
//
|
||
|
// initprintf() -- prints a string
|
||
|
//
|
||
|
void initprintf(const char *f, ...)
|
||
|
{
|
||
|
va_list va;
|
||
|
char buf[2048];
|
||
|
|
||
|
va_start(va, f);
|
||
|
Bvsnprintf(buf, sizeof(buf), f, va);
|
||
|
va_end(va);
|
||
|
}
|