diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-02-13 14:21:34 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-02-13 14:21:34 +0100 |
commit | 24460a6ede0ffcdecd7e2b8a8f8beff3a285f2e8 (patch) | |
tree | 6e2e12273d0e5fe5bc9f1b4526c98c3deef1f8cc /src | |
parent | c23acb820f8698361c65911649f97a9320c2c2b8 (diff) |
Swap out mbstring.h for rune.h
Diffstat (limited to 'src')
-rw-r--r-- | src/c8asm/common.h | 2 |
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)) |