diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2019-09-13 19:26:46 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2019-09-13 19:26:46 +0000 |
commit | 4ef634f0d16fbda69aef241fb561f27496c09867 (patch) | |
tree | 647f01e796b5b830b46968f589435f4bcd69b255 /regress/mdoc/Fo/warn.out_markdown | |
parent | cdc19ab62bcbc6a6f545f4f8f654f00a9a662f10 (diff) | |
download | mandoc-4ef634f0d16fbda69aef241fb561f27496c09867.tar.gz |
Improve validation of function names:
1. Relax checking to accept function types of the form
"ret_type (fname)(args)" (suggested by Yuri Pankov <yuripv dot net>).
2. Tighten checking to require the closing parenthesis.
Diffstat (limited to 'regress/mdoc/Fo/warn.out_markdown')
-rw-r--r-- | regress/mdoc/Fo/warn.out_markdown | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/regress/mdoc/Fo/warn.out_markdown b/regress/mdoc/Fo/warn.out_markdown index 9d37abba..b793fb9f 100644 --- a/regress/mdoc/Fo/warn.out_markdown +++ b/regress/mdoc/Fo/warn.out_markdown @@ -12,4 +12,25 @@ FO-WARN(1) - General Commands Manual *double* **atan2**(*double y, double x*); -OpenBSD - July 4, 2017 +*int* +**close)**(*int fd*); + +*typedef void* +**(handler)**(*int*); + +*typedef void* +**(\*fp)**(*int*); + +*int* +**(open**(*const char \*path*); + +*FILE \*‌* +**(\*popen**(*const char \*cmd*); + +*void* +**(trail)x**(*void*); + +*void* +**\*star**(*void*); + +OpenBSD - September 13, 2019 |