13 lines
184 B
C++
13 lines
184 B
C++
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <Spectre/System/Log.h>
|
|
|
|
void log(const char *fmt, ...) {
|
|
|
|
va_list vl;
|
|
|
|
va_start(vl, fmt);
|
|
vfprintf(stderr, fmt, vl);
|
|
va_end(vl);
|
|
}
|