1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-06 17:41:04 +00:00

Remove irr namespace (#16309)

This commit is contained in:
Lars Müller 2025-07-09 10:35:52 +02:00 committed by GitHub
parent 7e22c72492
commit 61551cfc3a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
381 changed files with 680 additions and 1632 deletions

View file

@ -30,7 +30,6 @@
#include "lvm.h"
const char lua_ident[] =
"$Lua: " LUA_RELEASE " " LUA_COPYRIGHT " $\n"
"$Authors: " LUA_AUTHORS " $\n"

View file

@ -21,7 +21,6 @@
/*
** If your system does not support `stdout', you can just remove this function.
** If you need, you can define your own `print' function, following this

View file

@ -18,7 +18,6 @@
#include "lualib.h"
static int db_getregistry (lua_State *L) {
lua_pushvalue(L, LUA_REGISTRYINDEX);
return 1;

View file

@ -29,7 +29,6 @@
#include "lvm.h"
static const char *getfuncname (lua_State *L, CallInfo *ci, const char **name);

View file

@ -32,7 +32,6 @@
/*
** {======================================================
** Error-recovery functions

View file

@ -19,7 +19,6 @@
#include "lstate.h"
Closure *luaF_newCclosure (lua_State *L, int nelems, Table *e) {
Closure *c = cast(Closure *, luaM_malloc(L, sizeCclosure(nelems)));
luaC_link(L, obj2gco(c), LUA_TFUNCTION);

View file

@ -19,7 +19,6 @@
#include "lualib.h"
#define IO_INPUT 1
#define IO_OUTPUT 2

View file

@ -24,7 +24,6 @@
#include "lzio.h"
#define next(ls) (ls->current = zgetc(ls->z))

View file

@ -19,7 +19,6 @@
#include "lstate.h"
/*
** About the realloc function:
** void * frealloc (void *ud, void *ptr, size_t osize, size_t nsize);

View file

@ -23,7 +23,6 @@
#include "lvm.h"
const TValue luaO_nilobject_ = {{NULL}, LUA_TNIL};

View file

@ -26,7 +26,6 @@
#include "ltable.h"
#define hasmultret(k) ((k) == VCALL || (k) == VVARARG)
#define getlocvar(fs, i) ((fs)->f->locvars[(fs)->actvar[i]])

View file

@ -14,7 +14,6 @@
#include "lzio.h"
struct lua_longjmp; /* defined in ldo.c */

View file

@ -18,7 +18,6 @@
#include "lstring.h"
void luaS_resize (lua_State *L, int newsize) {
GCObject **newhash;
stringtable *tb;

View file

@ -19,7 +19,6 @@
#include "ltm.h"
const char *const luaT_typenames[] = {
"nil", "boolean", "userdata", "number",
"string", "table", "function", "userdata", "thread",

View file

@ -18,7 +18,6 @@
#include "lualib.h"
static lua_State *globalL = NULL;
static const char *progname = LUA_PROGNAME;

View file

@ -27,7 +27,6 @@
#include "lvm.h"
/* limit for table tag-method chains (to avoid loops) */
#define MAXTAGLOOP 100