diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-03-07 14:14:14 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-03-07 14:14:14 +0100 |
commit | 02f5d70e400f882c9da25f5b9e0cd1f083cbdf2f (patch) | |
tree | cb296b4d9aeef042412b3402bc57a6a89b7b0db4 | |
parent | d2f62c83d6e3e60ebcb4810ecfe2e0429fef6c03 (diff) |
Fix macro name
-rw-r--r-- | lib/mbstring/u8chk.c | 2 | ||||
-rw-r--r-- | lib/mbstring/u8chr.c | 2 | ||||
-rw-r--r-- | lib/mbstring/u8rchr.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/mbstring/u8chk.c b/lib/mbstring/u8chk.c index 79ef5ee..d635e3d 100644 --- a/lib/mbstring/u8chk.c +++ b/lib/mbstring/u8chk.c @@ -1,5 +1,5 @@ #include "rune.h" -#define _RUNE_NO_MACRO_WRAPPER 1 +#define __MLIB_NO_MACRO_WRAPPER 1 #include "mbstring.h" char8_t * diff --git a/lib/mbstring/u8chr.c b/lib/mbstring/u8chr.c index 008b7d7..b7df221 100644 --- a/lib/mbstring/u8chr.c +++ b/lib/mbstring/u8chr.c @@ -2,7 +2,7 @@ #include <stdint.h> #include <string.h> -#define _RUNE_NO_MACRO_WRAPPER 1 +#define __MLIB_NO_MACRO_WRAPPER 1 #include "mbstring.h" /* NOTE: The memmem*() functions were taken directly from the memmem() diff --git a/lib/mbstring/u8rchr.c b/lib/mbstring/u8rchr.c index b92c323..1ffe445 100644 --- a/lib/mbstring/u8rchr.c +++ b/lib/mbstring/u8rchr.c @@ -1,7 +1,7 @@ #include <stddef.h> #include <stdint.h> -#define _RUNE_NO_MACRO_WRAPPER 1 +#define __MLIB_NO_MACRO_WRAPPER 1 #include "mbstring.h" static char8_t * |