aboutsummaryrefslogtreecommitdiffstats
path: root/man2/outb.2
diff options
context:
space:
mode:
authorAlex Colomar <alx.manpages@gmail.com>2022-09-18 01:09:59 +0200
committerAlejandro Colomar <alx@kernel.org>2022-11-10 00:53:45 +0100
commitc64cd13e002561c6802c6a1a1a8a640f034fea70 (patch)
tree6aa203e7d7d6a36fdd457994a78fc10c3b10d8ca /man2/outb.2
parent77f31ff920bc0abdf73ee4ece808ba4eeeff90a4 (diff)
downloadman-pages-c64cd13e0025.tar.gz
Various pages: SYNOPSIS: Use VLA syntax in 'void *' function parameters
Use VLA syntax also for void *, even if it's a bit more weird. Link: <https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2611.htm> Cc: Ingo Schwarze <schwarze@openbsd.org> Cc: JeanHeyd Meneide <wg14@soasis.org> Cc: Martin Uecker <uecker@tugraz.at> Cc: <gcc@gcc.gnu.org> Signed-off-by: Alex Colomar <alx.manpages@gmail.com>
Diffstat (limited to 'man2/outb.2')
-rw-r--r--man2/outb.212
1 files changed, 6 insertions, 6 deletions
diff --git a/man2/outb.2 b/man2/outb.2
index 3746422645..90bedebd44 100644
--- a/man2/outb.2
+++ b/man2/outb.2
@@ -30,17 +30,17 @@ Standard C library
.BI "void outl(unsigned int " value ", unsigned short " port );
.BI "void outl_p(unsigned int " value ", unsigned short " port );
.PP
-.BI "void insb(unsigned short " port ", void *" addr ,
+.BI "void insb(unsigned short " port ", void " addr [. count ],
.BI " unsigned long " count );
-.BI "void insw(unsigned short " port ", void *" addr ,
+.BI "void insw(unsigned short " port ", void " addr [. count ],
.BI " unsigned long " count );
-.BI "void insl(unsigned short " port ", void *" addr ,
+.BI "void insl(unsigned short " port ", void " addr [. count ],
.BI " unsigned long " count );
-.BI "void outsb(unsigned short " port ", const void *" addr ,
+.BI "void outsb(unsigned short " port ", const void " addr [. count ],
.BI " unsigned long " count );
-.BI "void outsw(unsigned short " port ", const void *" addr ,
+.BI "void outsw(unsigned short " port ", const void " addr [. count ],
.BI " unsigned long " count );
-.BI "void outsl(unsigned short " port ", const void *" addr ,
+.BI "void outsl(unsigned short " port ", const void " addr [. count ],
.BI " unsigned long " count );
.fi
.SH DESCRIPTION