diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2019-08-30 20:27:26 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2019-08-30 20:27:26 +0000 |
commit | 7c689af74388029d14fc15dab8e07b9d484cacb5 (patch) | |
tree | 21c4dea7c2b8934e3ed42fa91f8e697f89725845 /lib | |
parent | cec5e23483948f31899d26b2490811ef81018c41 (diff) |
mop up stdarg rename; ok deraadt
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gen/syslog.3 | 6 | ||||
-rw-r--r-- | lib/libc/stdio/printf.3 | 6 | ||||
-rw-r--r-- | lib/libc/stdio/scanf.3 | 6 | ||||
-rw-r--r-- | lib/libc/stdio/wprintf.3 | 6 | ||||
-rw-r--r-- | lib/libc/stdio/wscanf.3 | 6 |
5 files changed, 15 insertions, 15 deletions
diff --git a/lib/libc/gen/syslog.3 b/lib/libc/gen/syslog.3 index 74eb6382d36..11203bf1553 100644 --- a/lib/libc/gen/syslog.3 +++ b/lib/libc/gen/syslog.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: syslog.3,v 1.34 2017/08/29 18:23:01 millert Exp $ +.\" $OpenBSD: syslog.3,v 1.35 2019/08/30 20:27:25 jmc Exp $ .\" .\" Copyright (c) 1985, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -27,7 +27,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: August 29 2017 $ +.Dd $Mdocdate: August 30 2019 $ .Dt SYSLOG 3 .Os .Sh NAME @@ -106,7 +106,7 @@ The .Fn vsyslog function is an alternate form in which the arguments have already been captured using the variable-length argument facilities of -.Xr stdarg 3 . +.Xr va_start 3 . .Pp The message is tagged with .Fa priority . diff --git a/lib/libc/stdio/printf.3 b/lib/libc/stdio/printf.3 index e45c39c62a3..82e124a1a58 100644 --- a/lib/libc/stdio/printf.3 +++ b/lib/libc/stdio/printf.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: printf.3,v 1.83 2019/06/28 14:36:18 schwarze Exp $ +.\" $OpenBSD: printf.3,v 1.84 2019/08/30 20:27:25 jmc Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -33,7 +33,7 @@ .\" .\" @(#)printf.3 8.1 (Berkeley) 6/4/93 .\" -.Dd $Mdocdate: June 28 2019 $ +.Dd $Mdocdate: August 30 2019 $ .Dt PRINTF 3 .Os .Sh NAME @@ -123,7 +123,7 @@ These functions write the output under the control of a .Fa format string that specifies how subsequent arguments (or arguments accessed via the variable-length argument facilities of -.Xr stdarg 3 ) +.Xr va_start 3 ) are converted for output. .Pp .Fn snprintf diff --git a/lib/libc/stdio/scanf.3 b/lib/libc/stdio/scanf.3 index de75b931ce3..59730e3feb9 100644 --- a/lib/libc/stdio/scanf.3 +++ b/lib/libc/stdio/scanf.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: scanf.3,v 1.24 2019/01/16 12:55:49 schwarze Exp $ +.\" $OpenBSD: scanf.3,v 1.25 2019/08/30 20:27:25 jmc Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -31,7 +31,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: January 16 2019 $ +.Dd $Mdocdate: August 30 2019 $ .Dt SCANF 3 .Os .Sh NAME @@ -87,7 +87,7 @@ function is analogous to and reads input from the stream pointer .Fa stream using a variable argument list of pointers (see -.Xr stdarg 3 ) . +.Xr va_start 3 ) . The .Fn vscanf function scans a variable argument list from the standard input and the diff --git a/lib/libc/stdio/wprintf.3 b/lib/libc/stdio/wprintf.3 index bc8dcc34407..bac123c2ef6 100644 --- a/lib/libc/stdio/wprintf.3 +++ b/lib/libc/stdio/wprintf.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: wprintf.3,v 1.7 2019/01/16 12:55:49 schwarze Exp $ +.\" $OpenBSD: wprintf.3,v 1.8 2019/08/30 20:27:25 jmc Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -33,7 +33,7 @@ .\" .\" @(#)printf.3 8.1 (Berkeley) 6/4/93 .\" -.Dd $Mdocdate: January 16 2019 $ +.Dd $Mdocdate: August 30 2019 $ .Dt WPRINTF 3 .Os .Sh NAME @@ -109,7 +109,7 @@ These functions write the output under the control of a .Fa format string that specifies how subsequent arguments (or arguments accessed via the variable-length argument facilities of -.Xr stdarg 3 ) +.Xr va_start 3 ) are converted for output. .Pp These functions return the number of characters printed diff --git a/lib/libc/stdio/wscanf.3 b/lib/libc/stdio/wscanf.3 index f6583718d14..714281a8381 100644 --- a/lib/libc/stdio/wscanf.3 +++ b/lib/libc/stdio/wscanf.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: wscanf.3,v 1.4 2019/01/16 12:55:49 schwarze Exp $ +.\" $OpenBSD: wscanf.3,v 1.5 2019/08/30 20:27:25 jmc Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -34,7 +34,7 @@ .\" @(#)scanf.3 8.2 (Berkeley) 12/11/93 .\" FreeBSD: src/lib/libc/stdio/scanf.3,v 1.24 2003/06/28 09:03:25 das Exp .\" -.Dd $Mdocdate: January 16 2019 $ +.Dd $Mdocdate: August 30 2019 $ .Dt WSCANF 3 .Os .Sh NAME @@ -91,7 +91,7 @@ function is analogous to and reads input from the stream pointer .Fa stream using a variable argument list of pointers (see -.Xr stdarg 3 ) . +.Xr va_start 3 ) . The .Fn vwscanf function scans a variable argument list from the standard input and the |