Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Guard against multiple inclusion.
[simgrid.git] / src / bindings / lua / lua_state_cloner.h
index 194cbb1..57b8599 100644 (file)
@@ -4,6 +4,9 @@
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
+#ifndef LUA_STATE_CLONER_H
+#define LUA_STATE_CLONER_H
+
 /* SimGrid Lua state management                                             */
 #include <lua.h>
 
 /* SimGrid Lua state management                                             */
 #include <lua.h>
 
@@ -11,3 +14,5 @@ int sglua_is_maestro(lua_State* L);
 lua_State* sglua_get_maestro(void);
 lua_State* sglua_clone_maestro(void);
 void sglua_move_value(lua_State* src, lua_State* dst);
 lua_State* sglua_get_maestro(void);
 lua_State* sglua_clone_maestro(void);
 void sglua_move_value(lua_State* src, lua_State* dst);
+
+#endif  /* LUA_STATE_CLONER_H */