1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 13:56:37 +02:00

core: fix use of reserved C identifiers in headers (closes #31)

This commit is contained in:
Sebastien Helleu
2014-03-19 10:39:13 +01:00
parent bc96d2f1ec
commit 9b380a935b
153 changed files with 461 additions and 461 deletions
+3 -3
View File
@@ -18,8 +18,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __WEECHAT_LUA_API_H
#define __WEECHAT_LUA_API_H 1
#ifndef WEECHAT_LUA_API_H
#define WEECHAT_LUA_API_H 1
extern struct luaL_Reg weechat_lua_api_funcs[];
extern struct t_lua_const weechat_lua_api_consts[];
@@ -30,4 +30,4 @@ extern int weechat_lua_api_buffer_input_data_cb (void *data,
extern int weechat_lua_api_buffer_close_cb (void *data,
struct t_gui_buffer *buffer);
#endif /* __WEECHAT_LUA_API_H */
#endif /* WEECHAT_LUA_API_H */
+3 -3
View File
@@ -18,8 +18,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __WEECHAT_LUA_H
#define __WEECHAT_LUA_H 1
#ifndef WEECHAT_LUA_H
#define WEECHAT_LUA_H 1
#define weechat_plugin weechat_lua_plugin
#define LUA_PLUGIN_NAME "lua"
@@ -58,4 +58,4 @@ extern void weechat_lua_register_lib(lua_State *L, const char *libname,
const luaL_Reg *lua_api_funcs,
struct t_lua_const lua_api_consts[]);
#endif /* __WEECHAT_LUA_H */
#endif /* WEECHAT_LUA_H */