From 96f1d64aa0d466a66c4b08c81c27b20cad449fac Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Sat, 9 Nov 2013 11:04:30 +0000 Subject: [PATCH] Change ircterm.h header include guard so that it doesn't clash with the system term.h. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@433 13b04d17-f746-0410-82c6-800466cd88b0 --- include/ircterm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ircterm.h b/include/ircterm.h index 9f385df..90032ce 100644 --- a/include/ircterm.h +++ b/include/ircterm.h @@ -10,8 +10,8 @@ * @(#)$Id$ */ -#ifndef _TERM_H_ -# define _TERM_H_ +#ifndef IRCTERM_H_ +# define IRCTERM_H_ #ifdef HAVE_NCURSES_H # include @@ -746,4 +746,4 @@ int tputs (const unsigned char *, int, int (*)(int)); #endif #endif -#endif /* _TERM_H_ */ +#endif /* IRCTERM_H_ */