=================================================================== RCS file: /cvs/mandoc/roff.h,v retrieving revision 1.35 retrieving revision 1.37 diff -u -p -r1.35 -r1.37 --- mandoc/roff.h 2015/10/17 00:21:07 1.35 +++ mandoc/roff.h 2016/01/08 17:48:10 1.37 @@ -1,4 +1,4 @@ -/* $OpenBSD: roff.h,v 1.35 2015/10/17 00:21:07 schwarze Exp $ */ +/* $OpenBSD: roff.h,v 1.37 2016/01/08 17:48:10 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2013, 2014, 2015 Ingo Schwarze @@ -93,7 +93,6 @@ struct roff_node { char *string; /* TEXT */ const struct tbl_span *span; /* TBL */ const struct eqn *eqn; /* EQN */ - int nchild; /* Number of child nodes. */ int line; /* Input file line number. */ int pos; /* Input file column number. */ int tok; /* Request or macro ID. */ @@ -161,8 +160,5 @@ struct roff_man { enum roff_next next; /* Where to put the next node. */ }; -__BEGIN_DECLS void deroff(char **, const struct roff_node *); - -__END_DECLS