diff options
| author | Alejandro Colomar <alx@kernel.org> | 2025-03-14 18:33:41 +0100 |
|---|---|---|
| committer | Alejandro Colomar <alx@kernel.org> | 2025-03-14 18:55:19 +0100 |
| commit | d2c2db8830f8fcbb736bdea52b398257447bef6b (patch) | |
| tree | 13a38ceaeaa6bc257994d91027d42ca187fd2c21 /man/man3/bzero.3 | |
| parent | 44930b7b8eacbfff12acd1dcfbb66dd818e35254 (diff) | |
| download | man-pages-d2c2db8830f8fcbb736bdea52b398257447bef6b.tar.gz | |
man/: SYNOPSIS: Use GNU forward-declarations of parameters for sizes of array parameters
This syntax has been proposed for standardization in N3433.
Link: <https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3433.pdf>
Cc: Christopher Bazley <chris.bazley.wg14@gmail.com>
Cc: Martin Uecker <uecker@tugraz.at>
Cc: Joseph Myers <josmyers@redhat.com>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
Diffstat (limited to 'man/man3/bzero.3')
| -rw-r--r-- | man/man3/bzero.3 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/man/man3/bzero.3 b/man/man3/bzero.3 index 8a047aebdb..730c5bb6fd 100644 --- a/man/man3/bzero.3 +++ b/man/man3/bzero.3 @@ -13,11 +13,13 @@ Standard C library .nf .B #include <strings.h> .P -.BI "void bzero(void " s [. n "], size_t " n ); +.BI "void bzero(size_t " n ; +.BI " void " s [ n "], size_t " n ); .P .B #include <string.h> .P -.BI "void explicit_bzero(void " s [. n "], size_t " n ); +.BI "void explicit_bzero(size_t " n ; +.BI " void " s [ n "], size_t " n ); .fi .SH DESCRIPTION The |
