From 24460a6ede0ffcdecd7e2b8a8f8beff3a285f2e8 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Tue, 13 Feb 2024 14:21:34 +0100 Subject: Swap out mbstring.h for rune.h --- src/c8asm/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 +#include #define MIN(x, y) ((x) < (y) ? (x) : (y)) #define MAX(x, y) ((x) > (y) ? (x) : (y)) -- cgit v1.2.3