aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-02-13 14:21:34 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-02-13 14:21:34 +0100
commit24460a6ede0ffcdecd7e2b8a8f8beff3a285f2e8 (patch)
tree6e2e12273d0e5fe5bc9f1b4526c98c3deef1f8cc
parentc23acb820f8698361c65911649f97a9320c2c2b8 (diff)
Swap out mbstring.h for rune.h
-rw-r--r--src/c8asm/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c8asm/common.h b/src/c8asm/common.h
index 4f905b3..36a7036 100644
--- a/src/c8asm/common.h
+++ b/src/c8asm/common.h
@@ -1,7 +1,7 @@
#ifndef AHOY_C8ASM_COMMON_H
#define AHOY_C8ASM_COMMON_H
-#include <mbstring.h>
+#include <rune.h>
#define MIN(x, y) ((x) < (y) ? (x) : (y))
#define MAX(x, y) ((x) > (y) ? (x) : (y))