From b1c22317f2a3034952af3497fdb2394de7dc3a32 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 12 Oct 2025 20:59:04 -0400 Subject: misc: Use quoted includes Signed-off-by: Ian Moffett --- emux64/src/cpu/cpu_subr.c | 2 +- emux64/src/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/emux64/src/cpu/cpu_subr.c b/emux64/src/cpu/cpu_subr.c index a7be333..8833bdf 100644 --- a/emux64/src/cpu/cpu_subr.c +++ b/emux64/src/cpu/cpu_subr.c @@ -27,9 +27,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include #include #include +#include "cpu/cpu.h" void cpu_dump(struct osmx_core *core) diff --git a/emux64/src/main.c b/emux64/src/main.c index 4396eb5..c23a48f 100644 --- a/emux64/src/main.c +++ b/emux64/src/main.c @@ -30,8 +30,8 @@ #include #include #include -#include #include +#include "cpu/cpu.h" static char *rom_file = NULL; -- cgit v1.2.3