From e24ce8c2b322226bbc211e57f301c265a2622c4b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 21 Jun 2024 12:29:08 -0300 Subject: lua_writestring & co. moved to llimits.h They don't need to be visible by clients of Lua. --- lstrlib.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'lstrlib.c') diff --git a/lstrlib.c b/lstrlib.c index 97d974f8..ab33bffe 100644 --- a/lstrlib.c +++ b/lstrlib.c @@ -41,8 +41,6 @@ ** Some sizes are better limited to fit in 'int', but must also fit in ** 'size_t'. (We assume that 'lua_Integer' cannot be smaller than 'int'.) */ -#define MAX_SIZET ((size_t)(~(size_t)0)) - #define MAXSIZE \ (sizeof(size_t) < sizeof(int) ? MAX_SIZET : (size_t)(INT_MAX)) -- cgit v1.2.3-55-g6feb