diff options
Diffstat (limited to 'regress/mdoc/In')
-rw-r--r-- | regress/mdoc/In/Makefile | 2 | ||||
-rw-r--r-- | regress/mdoc/In/break.out_markdown | 35 | ||||
-rw-r--r-- | regress/mdoc/In/noarg.out_markdown | 25 |
3 files changed, 61 insertions, 1 deletions
diff --git a/regress/mdoc/In/Makefile b/regress/mdoc/In/Makefile index 1c8a484f..9c92ccf4 100644 --- a/regress/mdoc/In/Makefile +++ b/regress/mdoc/In/Makefile @@ -2,6 +2,6 @@ REGRESS_TARGETS = break eos font noarg LINT_TARGETS = noarg -MARKDOWN_TARGETS = eos font +MARKDOWN_TARGETS = break eos font noarg .include <bsd.regress.mk> diff --git a/regress/mdoc/In/break.out_markdown b/regress/mdoc/In/break.out_markdown new file mode 100644 index 00000000..dbc1085f --- /dev/null +++ b/regress/mdoc/In/break.out_markdown @@ -0,0 +1,35 @@ +IN-BREAK(2) - System Calls Manual + +# NAME + +**In-break** - line break before header include file + +# SYNOPSIS + +**#include <fcntl.h>** + +*int* +**open**(*const char \*path*, *int flags*, *mode\_t mode*); + +**#include <sys/types.h>** +**#include <unistd.h>** + +*int* +**dup**(*int oldd*); + +*ssize\_t* +**write**(*int d*, *const void \*buf*, *size\_t nbytes*); + +# DESCRIPTION + +<*fcntl.h*> +*int* +**open**(*const char \*path*, *int flags*, *mode\_t mode*) +<*sys/types.h*> +<*unistd.h*> +*int* +**dup**(*int oldd*) +*ssize\_t* +**write**(*int d*, *const void \*buf*, *size\_t nbytes*) + +OpenBSD - June 6, 2010 diff --git a/regress/mdoc/In/noarg.out_markdown b/regress/mdoc/In/noarg.out_markdown new file mode 100644 index 00000000..81970226 --- /dev/null +++ b/regress/mdoc/In/noarg.out_markdown @@ -0,0 +1,25 @@ +IN-NOARG(2) - System Calls Manual + +# NAME + +**In-noarg** - include file macros without argument + +# SYNOPSIS + +**#include <math.h>** + +*double* +**sin**(*double x*); + +*double* +**cos**(*double x*); + +# DESCRIPTION + +<*math.h*> +*double* +**sin**(*double x*) +*double* +**cos**(*double x*) + +OpenBSD - February 5, 2015 |