diff options
author | 2012-06-02 20:07:09 +0000 | |
---|---|---|
committer | 2012-06-02 20:07:09 +0000 | |
commit | 8d0fa220a9f3f8678da39a869f6716a46ae538b0 (patch) | |
tree | 595f60b77a7788b4c9bfa2d59f5b510d46a1d063 /usr.bin/mandoc/man.h | |
parent | Add AMT ports to /etc/services so they're entered in net.inet.tcp.baddynamic (diff) | |
download | wireguard-openbsd-8d0fa220a9f3f8678da39a869f6716a46ae538b0.tar.xz wireguard-openbsd-8d0fa220a9f3f8678da39a869f6716a46ae538b0.zip |
Minimal implementation of .EX and .EE for GNU compatibility.
Do not use this, it is not portable and only defined in esr's man-ext.
For example, sox(1) wants these macros.
Diffstat (limited to 'usr.bin/mandoc/man.h')
-rw-r--r-- | usr.bin/mandoc/man.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man.h b/usr.bin/mandoc/man.h index c67ef8d3134..e06257f6f05 100644 --- a/usr.bin/mandoc/man.h +++ b/usr.bin/mandoc/man.h @@ -1,4 +1,4 @@ -/* $Id: man.h,v 1.39 2012/02/26 19:41:27 schwarze Exp $ */ +/* $Id: man.h,v 1.40 2012/06/02 20:07:09 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -52,6 +52,8 @@ enum mant { MAN_in, MAN_ft, MAN_OP, + MAN_EX, + MAN_EE, MAN_MAX }; |