This commit is contained in:
Enno Rehling 2018-09-25 20:49:50 +02:00
commit 919f870e22
3 changed files with 7 additions and 13 deletions

View File

@ -5,13 +5,12 @@
/* lua includes */ /* lua includes */
#include <lua.h> #include <lua.h>
#include <luaconf.h>
#include <lauxlib.h> #include <lauxlib.h>
#include <lualib.h>
/* libc includes */ /* libc includes */
#include <assert.h> #include <assert.h>
#include <signal.h> #include <signal.h>
#include <stdlib.h>
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>

View File

@ -17,26 +17,21 @@ without prior permission by the authors of Eressea.
#include "helpers.h" #include "helpers.h"
#include "vortex.h" #include "vortex.h"
#include "alchemy.h" #include "alchemy.h"
#include "magic.h"
#include <util/attrib.h> #include <util/attrib.h>
#include <util/base36.h>
#include <util/event.h> #include <util/event.h>
#include <util/functions.h> #include <util/functions.h>
#include <util/gamedata.h> #include <util/gamedata.h>
#include <util/log.h> #include <util/log.h>
#include <util/macros.h> #include <util/macros.h>
#include <util/parser.h> #include <util/parser.h>
#include <util/resolve.h> #include <util/variant.h>
#include <kernel/callbacks.h>
#include <kernel/config.h> #include <kernel/config.h>
#include <kernel/callbacks.h> #include <kernel/callbacks.h>
#include <kernel/faction.h>
#include <kernel/spell.h> #include <kernel/spell.h>
#include <kernel/race.h>
#include <kernel/resources.h>
#include <kernel/unit.h> #include <kernel/unit.h>
#include <kernel/building.h>
#include <kernel/item.h> #include <kernel/item.h>
#include <kernel/region.h> #include <kernel/region.h>
@ -46,8 +41,10 @@ without prior permission by the authors of Eressea.
#include <lua.h> #include <lua.h>
#include <assert.h> #include <assert.h>
#include <string.h> #include <stdbool.h>
#include <stdlib.h> #include <stdio.h>
struct order;
static int static int
lua_giveitem(unit * s, unit * d, const item_type * itype, int n, struct order *ord) lua_giveitem(unit * s, unit * d, const item_type * itype, int n, struct order *ord)

View File

@ -14,8 +14,6 @@ without prior permission by the authors of Eressea.
extern "C" { extern "C" {
#endif #endif
struct lua_State;
void register_tolua_helpers(void); void register_tolua_helpers(void);
#ifdef __cplusplus #ifdef __cplusplus