=================================================================== RCS file: /cvs/mandoc/Attic/private.h,v retrieving revision 1.77 retrieving revision 1.79 diff -u -p -r1.77 -r1.79 --- mandoc/Attic/private.h 2009/02/21 21:00:06 1.77 +++ mandoc/Attic/private.h 2009/02/23 12:45:19 1.79 @@ -1,4 +1,4 @@ -/* $Id: private.h,v 1.77 2009/02/21 21:00:06 kristaps Exp $ */ +/* $Id: private.h,v 1.79 2009/02/23 12:45:19 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -38,6 +38,7 @@ struct mdoc { struct mdoc_node *first; struct mdoc_meta meta; enum mdoc_sec lastnamed; + enum mdoc_sec lastsec; }; @@ -163,15 +164,6 @@ int xstrncmp(const char *, const char *, size_t); void *xcalloc(size_t, size_t); char *xstrdup(const char *); -int macro_obsolete(MACRO_PROT_ARGS); -int macro_constant(MACRO_PROT_ARGS); -int macro_constant_scoped(MACRO_PROT_ARGS); -int macro_constant_delimited(MACRO_PROT_ARGS); -int macro_text(MACRO_PROT_ARGS); -int macro_scoped(MACRO_PROT_ARGS); -int macro_scoped_close(MACRO_PROT_ARGS); -int macro_scoped_line(MACRO_PROT_ARGS); -int macro_prologue(MACRO_PROT_ARGS); int macro_end(struct mdoc *); __END_DECLS