=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/term.h,v retrieving revision 1.50 retrieving revision 1.51 diff -c -r1.50 -r1.51 *** src/usr.bin/mandoc/term.h 2014/11/27 14:31:29 1.50 --- src/usr.bin/mandoc/term.h 2014/12/01 08:05:02 1.51 *************** *** 1,4 **** ! /* $OpenBSD: term.h,v 1.50 2014/11/27 14:31:29 deraadt Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2011, 2012, 2013, 2014 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: term.h,v 1.51 2014/12/01 08:05:02 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2011, 2012, 2013, 2014 Ingo Schwarze *************** *** 15,24 **** * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ - __BEGIN_DECLS - struct termp; - enum termenc { TERMENC_ASCII, TERMENC_LOCALE, --- 15,21 ---- *************** *** 41,46 **** --- 38,45 ---- #define TERM_MAXMARGIN 100000 /* FIXME */ + struct termp; + typedef void (*term_margin)(struct termp *, const void *); struct termp_tbl { *************** *** 100,105 **** --- 99,109 ---- const void *argf; /* arg for headf/footf */ struct termp_ps *ps; }; + + __BEGIN_DECLS + + struct tbl_span; + struct eqn; const char *ascii_uc2str(int);