diff options
Diffstat (limited to 'usr.bin/mandoc/html.h')
-rw-r--r-- | usr.bin/mandoc/html.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mandoc/html.h b/usr.bin/mandoc/html.h index cbb19a148c7..7f23401ad97 100644 --- a/usr.bin/mandoc/html.h +++ b/usr.bin/mandoc/html.h @@ -1,4 +1,4 @@ -/* $OpenBSD: html.h,v 1.62 2019/01/07 06:51:37 schwarze Exp $ */ +/* $OpenBSD: html.h,v 1.63 2019/01/18 14:36:16 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2017, 2018, 2019 Ingo Schwarze <schwarze@openbsd.org> @@ -79,6 +79,8 @@ enum htmlfont { struct tag { struct tag *next; + int refcnt; + int closed; enum htmltag tag; }; |