summaryrefslogtreecommitdiff
path: root/src/core/wee-completion.h
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2014-03-19 10:39:13 +0100
committerSebastien Helleu <flashcode@flashtux.org>2014-03-19 10:39:13 +0100
commit9b380a935b9fe07daf7e1e1f0ad12a41519bb10c (patch)
treee51f291fdb9b80d4f2d39abaacb8705e5c987e9c /src/core/wee-completion.h
parentbc96d2f1ec4bcba58aab03042a9266842a42cfcb (diff)
downloadweechat-9b380a935b9fe07daf7e1e1f0ad12a41519bb10c.zip
core: fix use of reserved C identifiers in headers (closes #31)
Diffstat (limited to 'src/core/wee-completion.h')
-rw-r--r--src/core/wee-completion.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/wee-completion.h b/src/core/wee-completion.h
index 7b7b1ee2b..0ee221deb 100644
--- a/src/core/wee-completion.h
+++ b/src/core/wee-completion.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_COMPLETION_H
-#define __WEECHAT_COMPLETION_H 1
+#ifndef WEECHAT_COMPLETION_H
+#define WEECHAT_COMPLETION_H 1
struct t_gui_buffer;
struct t_gui_completion;
@@ -29,4 +29,4 @@ extern int completion_list_add_filename_cb (void *data,
struct t_gui_completion *completion);
extern void completion_init ();
-#endif /* __WEECHAT_COMPLETION_H */
+#endif /* WEECHAT_COMPLETION_H */