diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-19 10:39:13 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-19 10:39:13 +0100 |
commit | 9b380a935b9fe07daf7e1e1f0ad12a41519bb10c (patch) | |
tree | e51f291fdb9b80d4f2d39abaacb8705e5c987e9c /src/plugins/fifo | |
parent | bc96d2f1ec4bcba58aab03042a9266842a42cfcb (diff) | |
download | weechat-9b380a935b9fe07daf7e1e1f0ad12a41519bb10c.zip |
core: fix use of reserved C identifiers in headers (closes #31)
Diffstat (limited to 'src/plugins/fifo')
-rw-r--r-- | src/plugins/fifo/fifo-info.h | 6 | ||||
-rw-r--r-- | src/plugins/fifo/fifo.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/fifo/fifo-info.h b/src/plugins/fifo/fifo-info.h index 05401b694..183cd1edd 100644 --- a/src/plugins/fifo/fifo-info.h +++ b/src/plugins/fifo/fifo-info.h @@ -17,9 +17,9 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef __WEECHAT_FIFO_INFO_H -#define __WEECHAT_FIFO_INFO_H 1 +#ifndef WEECHAT_FIFO_INFO_H +#define WEECHAT_FIFO_INFO_H 1 extern void fifo_info_init (); -#endif /* __WEECHAT_FIFO_INFO_H */ +#endif /* WEECHAT_FIFO_INFO_H */ diff --git a/src/plugins/fifo/fifo.h b/src/plugins/fifo/fifo.h index c640d60c3..f53d78352 100644 --- a/src/plugins/fifo/fifo.h +++ b/src/plugins/fifo/fifo.h @@ -17,8 +17,8 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef __WEECHAT_FIFO_H -#define __WEECHAT_FIFO_H 1 +#ifndef WEECHAT_FIFO_H +#define WEECHAT_FIFO_H 1 #define weechat_plugin weechat_fifo_plugin #define FIFO_PLUGIN_NAME "fifo" @@ -26,4 +26,4 @@ extern struct t_weechat_plugin *weechat_fifo_plugin; extern char *fifo_filename; -#endif /* __WEECHAT_FIFO_H */ +#endif /* WEECHAT_FIFO_H */ |