aboutsummaryrefslogtreecommitdiff
path: root/contrib/groff/src/preproc/eqn/lex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/groff/src/preproc/eqn/lex.cpp')
-rw-r--r--contrib/groff/src/preproc/eqn/lex.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/groff/src/preproc/eqn/lex.cpp b/contrib/groff/src/preproc/eqn/lex.cpp
index abc07c9cfd5f..6aa494dbf0d8 100644
--- a/contrib/groff/src/preproc/eqn/lex.cpp
+++ b/contrib/groff/src/preproc/eqn/lex.cpp
@@ -1,5 +1,5 @@
// -*- C++ -*-
-/* Copyright (C) 1989, 1990, 1991, 1992, 2000, 2001, 2002, 2003
+/* Copyright (C) 1989, 1990, 1991, 1992, 2000, 2001, 2002, 2003, 2005
Free Software Foundation, Inc.
Written by James Clark (jjc@jclark.com)
@@ -17,13 +17,19 @@ for more details.
You should have received a copy of the GNU General Public License along
with groff; see the file COPYING. If not, write to the Free Software
-Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+Foundation, 51 Franklin St - Fifth Floor, Boston, MA 02110-1301, USA. */
#include "eqn.h"
#include "eqn_tab.h"
#include "stringclass.h"
#include "ptable.h"
+
+// declarations to avoid friend name injection problems
+int get_char();
+int peek_char();
+int get_location(char **, int *);
+
struct definition {
char is_macro;
char is_simple;