From 576bd27e11ec70bdbd1b9a644d2e227b57586337 Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Sun, 10 May 2026 00:28:14 -0400 Subject: i ain't splitting alla this up --- teensy/log.c | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 teensy/log.c (limited to 'teensy/log.c') diff --git a/teensy/log.c b/teensy/log.c deleted file mode 100644 index fbd96a2..0000000 --- a/teensy/log.c +++ /dev/null @@ -1,33 +0,0 @@ -#include "log.h" - -#include - -#include "common.h" - -void ty_log_msg( - FILE *file, - const char *src_name, - int src_line, - const char *type, - const char *fmt, - ... -) -{ - fprintf(file, "[%s] (%s:%d) ", type, src_name, src_line); - - va_list args; - va_start(args, fmt); - vfprintf(file, fmt, args); - va_end(args); - - putc('\n', file); -} - -void _ty_log_plain(FILE *file, const char *fmt, ...) -{ - va_list args; - va_start(args, fmt); - vfprintf(file, fmt, args); - va_end(args); - putc('\n', file); -} -- cgit v1.3-2-g0d8e