From de0cd8796d835061898edb3ea89d9a3c84df859f Mon Sep 17 00:00:00 2001 From: Matthew Wozniak Date: Sun, 10 Nov 2024 22:40:14 -0500 Subject: Small code changes; add ability to find audio functions and data. Audio is weird. I've been working for a few days to figure out how to correctly render the audio but in that time I've done some other minor refactors so I figured I migth as well just push those. Audio should be coming soon, but no promises. --- log.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'log.h') diff --git a/log.h b/log.h index 2f866d1..584ef28 100644 --- a/log.h +++ b/log.h @@ -15,6 +15,7 @@ */ #include +#include #define die(fmt, ...) {\ fprintf(stderr, "err: %s: " fmt "\n", __func__ __VA_OPT__(,) __VA_ARGS__); \ @@ -34,5 +35,3 @@ #define debug(fmt, ...) \ fprintf(stderr, "dbg: %s: " fmt "\n", __func__ __VA_OPT__(,) __VA_ARGS__) - -// vi: sw=4 ts=4 noet tw=80 cc=80 -- cgit v1.2.3-54-g00ecf