From a415926b78750cb557366385717fb8edb5cb9533 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Fri, 17 Apr 2009 16:23:40 +0200 Subject: [PATCH] struct: move void_array definition to luaa Signed-off-by: Julien Danjou --- luaa.c | 2 ++ structs.h | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/luaa.c b/luaa.c index f8ac23788..86e33e7c2 100644 --- a/luaa.c +++ b/luaa.c @@ -70,6 +70,8 @@ extern const struct luaL_reg awesome_wibox_meta[]; extern const struct luaL_reg awesome_key_methods[]; extern const struct luaL_reg awesome_key_meta[]; +DO_ARRAY(const void *, void, DO_NOTHING) + /** Quit awesome. * \param L The Lua VM state. * \return The number of elements pushed on stack. diff --git a/structs.h b/structs.h index a66a93639..da0a7a4fb 100644 --- a/structs.h +++ b/structs.h @@ -146,8 +146,6 @@ struct awesome_t SnDisplay *sndisplay; }; -DO_ARRAY(const void *, void, DO_NOTHING) - extern awesome_t globalconf; #endif