summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesper Jensen <jesper@jnsn.dev>2025-12-08 14:25:48 +0100
committerJesper Jensen <jesper@jnsn.dev>2025-12-08 14:25:48 +0100
commit5935ea66aac38ebb37f81f17e3d72afe27e036ea (patch)
tree5a5b8ff42e26a3da4470370ae450030ad8d09008
parent7a5e295029e8a2c176e4b75f06f52a43bca7ccbd (diff)
Missed the include
-rw-r--r--inc/cad/log.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/inc/cad/log.h b/inc/cad/log.h
index dd46479..a0dabf6 100644
--- a/inc/cad/log.h
+++ b/inc/cad/log.h
@@ -1,5 +1,7 @@
#pragma once
+#include <stdio.h>
+
#define LOG(fmt, ...) \
fprintf(stderr, "%s:%d: " fmt, __FILE__, __LINE__, ##__VA_ARGS__);