mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-18 02:01:39 +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);
|
||
|
}
|