From owner-svn-src-stable-12@freebsd.org Sat Aug 1 14:22:07 2020 Return-Path: Delivered-To: svn-src-stable-12@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 20C6937CADA; Sat, 1 Aug 2020 14:22:07 +0000 (UTC) (envelope-from gbe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BJmYq08fQz4MfF; Sat, 1 Aug 2020 14:22:07 +0000 (UTC) (envelope-from gbe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C5982140F6; Sat, 1 Aug 2020 14:22:06 +0000 (UTC) (envelope-from gbe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 071EM6Rv033412; Sat, 1 Aug 2020 14:22:06 GMT (envelope-from gbe@FreeBSD.org) Received: (from gbe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 071EM5Uc033404; Sat, 1 Aug 2020 14:22:05 GMT (envelope-from gbe@FreeBSD.org) Message-Id: <202008011422.071EM5Uc033404@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gbe set sender to gbe@FreeBSD.org using -f From: Gordon Bergling Date: Sat, 1 Aug 2020 14:22:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r363763 - in stable/12/lib: libc/stdio libc/stdlib msun/man X-SVN-Group: stable-12 X-SVN-Commit-Author: gbe X-SVN-Commit-Paths: in stable/12/lib: libc/stdio libc/stdlib msun/man X-SVN-Commit-Revision: 363763 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-12@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for only the 12-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Aug 2020 14:22:07 -0000 Author: gbe (doc committer) Date: Sat Aug 1 14:22:05 2020 New Revision: 363763 URL: https://svnweb.freebsd.org/changeset/base/363763 Log: MFC r359547, r359629 (by imp): Note some functions that appeared in First Edition Unix These functions first appeared in the First Edition of Unix (or earlier in the pdp-7 version). Just claim 1st Edition for all this. The pdp-7 code is too fragmented at this point to extend history that far back. Modified: stable/12/lib/libc/stdio/getwc.3 stable/12/lib/libc/stdlib/atof.3 stable/12/lib/libc/stdlib/atoi.3 stable/12/lib/msun/man/cos.3 stable/12/lib/msun/man/exp.3 stable/12/lib/msun/man/sin.3 Directory Properties: stable/12/ (props changed) Modified: stable/12/lib/libc/stdio/getwc.3 ============================================================================== --- stable/12/lib/libc/stdio/getwc.3 Sat Aug 1 14:08:05 2020 (r363762) +++ stable/12/lib/libc/stdio/getwc.3 Sat Aug 1 14:22:05 2020 (r363763) @@ -112,3 +112,10 @@ and functions conform to .St -isoC-99 . +.Sh HISTORY +A version of the +.Fn getc +and +.Fn getw +functions appeared in +.At v1 . Modified: stable/12/lib/libc/stdlib/atof.3 ============================================================================== --- stable/12/lib/libc/stdlib/atof.3 Sat Aug 1 14:08:05 2020 (r363762) +++ stable/12/lib/libc/stdlib/atof.3 Sat Aug 1 14:22:05 2020 (r363763) @@ -32,7 +32,7 @@ .\" @(#)atof.3 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd June 4, 1993 +.Dd April 1, 2020 .Dt ATOF 3 .Os .Sh NAME @@ -93,3 +93,8 @@ function conforms to .St -isoC , and .St -isoC-99 . +.Sh HISTORY +The +.Fn atof +function appeared in +.At v1 . Modified: stable/12/lib/libc/stdlib/atoi.3 ============================================================================== --- stable/12/lib/libc/stdlib/atoi.3 Sat Aug 1 14:08:05 2020 (r363762) +++ stable/12/lib/libc/stdlib/atoi.3 Sat Aug 1 14:22:05 2020 (r363763) @@ -32,7 +32,7 @@ .\" @(#)atoi.3 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd June 13, 2018 +.Dd April 1, 2020 .Dt ATOI 3 .Os .Sh NAME @@ -85,3 +85,8 @@ function conforms to .St -isoC , and .St -isoC-99 . +.Sh HISTORY +The +.Fn atoi +function appeared in +.At v1 . Modified: stable/12/lib/msun/man/cos.3 ============================================================================== --- stable/12/lib/msun/man/cos.3 Sat Aug 1 14:08:05 2020 (r363762) +++ stable/12/lib/msun/man/cos.3 Sat Aug 1 14:22:05 2020 (r363763) @@ -28,7 +28,7 @@ .\" from: @(#)cos.3 5.1 (Berkeley) 5/2/91 .\" $FreeBSD$ .\" -.Dd January 24, 2008 +.Dd April 1, 2020 .Dt COS 3 .Os .Sh NAME @@ -81,3 +81,8 @@ functions return the cosine value. .Sh STANDARDS These functions conform to .St -isoC-99 . +.Sh HISTORY +The +.Fn cos +function first appeared in +.At v1 . Modified: stable/12/lib/msun/man/exp.3 ============================================================================== --- stable/12/lib/msun/man/exp.3 Sat Aug 1 14:08:05 2020 (r363762) +++ stable/12/lib/msun/man/exp.3 Sat Aug 1 14:22:05 2020 (r363763) @@ -28,7 +28,7 @@ .\" from: @(#)exp.3 6.12 (Berkeley) 7/31/91 .\" $FreeBSD$ .\" -.Dd December 8, 2017 +.Dd April 1, 2020 .Dt EXP 3 .Os .Sh NAME @@ -190,3 +190,8 @@ and infinite x, i.e., independently of x. .Sh STANDARDS These functions conform to .St -isoC-99 . +.Sh HISTORY +The +.Fn exp +function appeared in +.At v1 . Modified: stable/12/lib/msun/man/sin.3 ============================================================================== --- stable/12/lib/msun/man/sin.3 Sat Aug 1 14:08:05 2020 (r363762) +++ stable/12/lib/msun/man/sin.3 Sat Aug 1 14:22:05 2020 (r363763) @@ -29,7 +29,7 @@ .\" from: @(#)sin.3 6.7 (Berkeley) 4/19/91 .\" $FreeBSD$ .\" -.Dd January 24, 2008 +.Dd April 1, 2020 .Dt SIN 3 .Os .Sh NAME @@ -80,3 +80,8 @@ functions return the sine value. .Sh STANDARDS These functions conform to .St -isoC-99 . +.Sh HISTORY +The +.Fn sin +function first appeared in +.At v1 .