nishbox/engine/log.c
2025-03-31 01:07:18 +09:00

22 lines
287 B
C

#define NB_LOG_EXPOSE
#include "nb_pre.h"
/* External library */
/* Interface */
#include "nb_log.h"
/* NishBox */
/* Standard */
#include <stdio.h>
#include <stdarg.h>
void nb_log(const char* fmt, ...) {
va_list va;
va_start(va, fmt);
vfprintf(stderr, fmt, va);
va_end(va);
}