diff options
author | 2013-07-18 10:14:48 +0000 | |
---|---|---|
committer | 2013-07-18 10:14:48 +0000 | |
commit | a51c8c4a6df7a40fa664fa3eccb73519f2d6b70c (patch) | |
tree | 400f7bdd5f4ea8370181d6a5ccb138855413d602 /lib/libc/stdio | |
parent | There is no uvm_km_pages_free in our kernel anymore. The corresponding (diff) | |
download | wireguard-openbsd-a51c8c4a6df7a40fa664fa3eccb73519f2d6b70c.tar.xz wireguard-openbsd-a51c8c4a6df7a40fa664fa3eccb73519f2d6b70c.zip |
HISTORY; tweaks and ok sobrado@ jmc@
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/fflush.3 | 9 | ||||
-rw-r--r-- | lib/libc/stdio/fputs.3 | 13 | ||||
-rw-r--r-- | lib/libc/stdio/putc.3 | 20 |
3 files changed, 33 insertions, 9 deletions
diff --git a/lib/libc/stdio/fflush.3 b/lib/libc/stdio/fflush.3 index 75eb5ae5fdf..5ab16623dcd 100644 --- a/lib/libc/stdio/fflush.3 +++ b/lib/libc/stdio/fflush.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: fflush.3,v 1.9 2013/06/05 03:39:23 tedu Exp $ +.\" $OpenBSD: fflush.3,v 1.10 2013/07/18 10:14:49 schwarze 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: June 5 2013 $ +.Dd $Mdocdate: July 18 2013 $ .Dt FFLUSH 3 .Os .Sh NAME @@ -103,3 +103,8 @@ The .Fn fflush function conforms to .St -ansiC . +.Sh HISTORY +The +.Fn fflush +function first appeared in +.At v7 . diff --git a/lib/libc/stdio/fputs.3 b/lib/libc/stdio/fputs.3 index dbe9c528fff..486b9eec099 100644 --- a/lib/libc/stdio/fputs.3 +++ b/lib/libc/stdio/fputs.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: fputs.3,v 1.9 2013/06/05 03:39:23 tedu Exp $ +.\" $OpenBSD: fputs.3,v 1.10 2013/07/18 10:14:49 schwarze 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: June 5 2013 $ +.Dd $Mdocdate: July 18 2013 $ .Dt FPUTS 3 .Os .Sh NAME @@ -100,3 +100,12 @@ and .Fn puts conform to .St -ansiC . +.Sh HISTORY +The function +.Fn puts +first appeared in +.At v6 +and +.Fn fputs +in +.At v7 . diff --git a/lib/libc/stdio/putc.3 b/lib/libc/stdio/putc.3 index 13813ef3be4..f48419a7118 100644 --- a/lib/libc/stdio/putc.3 +++ b/lib/libc/stdio/putc.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: putc.3,v 1.11 2013/06/05 03:39:23 tedu Exp $ +.\" $OpenBSD: putc.3,v 1.12 2013/07/18 10:14:49 schwarze 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: June 5 2013 $ +.Dd $Mdocdate: July 18 2013 $ .Dt PUTC 3 .Os .Sh NAME @@ -126,10 +126,20 @@ and .Fn putchar , conform to .St -ansiC . -A function +.Sh HISTORY +The +.Fn putc +and .Fn putw -function appeared in -.At v6 . +functions first appeared in +.At v1 ; +.Fn putchar +in +.At v2 ; +and +.Fn fputc +in +.At v7 . .Sh BUGS Since the size and byte order of an .Li int |