[Midnightbsd-cvs] src [10554] tag
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Thu Jun 7 20:45:53 EDT 2018
Revision: 10554
http://svnweb.midnightbsd.org/src/?rev=10554
Author: laffer1
Date: 2018-06-07 20:45:53 -0400 (Thu, 07 Jun 2018)
Log Message:
-----------
tag
Modified Paths:
--------------
trunk/lib/libc/stdlib/atoi.3
trunk/lib/libc/stdlib/atol.3
trunk/lib/libc/stdlib/atol.c
Property Changed:
----------------
trunk/lib/libc/stdlib/atoi.3
trunk/lib/libc/stdlib/atol.3
Modified: trunk/lib/libc/stdlib/atoi.3
===================================================================
--- trunk/lib/libc/stdlib/atoi.3 2018-06-08 00:45:28 UTC (rev 10553)
+++ trunk/lib/libc/stdlib/atoi.3 2018-06-08 00:45:53 UTC (rev 10554)
@@ -1,3 +1,4 @@
+.\" $MidnightBSD$
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
@@ -13,7 +14,7 @@
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
@@ -30,7 +31,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)atoi.3 8.1 (Berkeley) 6/4/93
-.\" $FreeBSD$
+.\" $FreeBSD: stable/10/lib/libc/stdlib/atoi.3 251069 2013-05-28 20:57:40Z emaste $
.\"
.Dd June 4, 1993
.Dt ATOI 3
Property changes on: trunk/lib/libc/stdlib/atoi.3
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/stdlib/atol.3
===================================================================
--- trunk/lib/libc/stdlib/atol.3 2018-06-08 00:45:28 UTC (rev 10553)
+++ trunk/lib/libc/stdlib/atol.3 2018-06-08 00:45:53 UTC (rev 10554)
@@ -1,3 +1,4 @@
+.\" $MidnightBSD$
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
@@ -13,7 +14,7 @@
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
@@ -30,9 +31,9 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)atol.3 8.1 (Berkeley) 6/4/93
-.\" $FreeBSD$
+.\" $FreeBSD: stable/10/lib/libc/stdlib/atol.3 251069 2013-05-28 20:57:40Z emaste $
.\"
-.Dd February 1, 2009
+.Dd May 14, 2013
.Dt ATOL 3
.Os
.Sh NAME
@@ -88,13 +89,13 @@
functions are thin wrappers around
.Fn strtol
and
-.Fn stroll
+.Fn strtoll
respectively, so these functions will affect the value of
.Va errno
in the same way that the
.Fn strtol
and
-.Fn stroll
+.Fn strtoll
functions are able to.
This behavior of
.Fn atol
Property changes on: trunk/lib/libc/stdlib/atol.3
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/stdlib/atol.c
===================================================================
--- trunk/lib/libc/stdlib/atol.c 2018-06-08 00:45:28 UTC (rev 10553)
+++ trunk/lib/libc/stdlib/atol.c 2018-06-08 00:45:53 UTC (rev 10554)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
@@ -15,7 +16,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -36,7 +37,7 @@
static char sccsid[] = "@(#)atol.c 8.1 (Berkeley) 6/4/93";
#endif /* LIBC_SCCS and not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/stdlib/atol.c 251069 2013-05-28 20:57:40Z emaste $");
#include <stdlib.h>
#include <xlocale.h>
More information about the Midnightbsd-cvs
mailing list