[Midnightbsd-cvs] src [11480] trunk/usr.bin/ministat/ministat.c: tag
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat Jul 7 13:23:52 EDT 2018
Revision: 11480
http://svnweb.midnightbsd.org/src/?rev=11480
Author: laffer1
Date: 2018-07-07 13:23:51 -0400 (Sat, 07 Jul 2018)
Log Message:
-----------
tag
Modified Paths:
--------------
trunk/usr.bin/ministat/Makefile
trunk/usr.bin/ministat/ministat.1
trunk/usr.bin/ministat/ministat.c
Property Changed:
----------------
trunk/usr.bin/ministat/ministat.1
Modified: trunk/usr.bin/ministat/Makefile
===================================================================
--- trunk/usr.bin/ministat/Makefile 2018-07-07 17:23:19 UTC (rev 11479)
+++ trunk/usr.bin/ministat/Makefile 2018-07-07 17:23:51 UTC (rev 11480)
@@ -1,4 +1,5 @@
# $MidnightBSD$
+# $FreeBSD: stable/10/usr.bin/ministat/Makefile 183960 2008-10-16 20:39:02Z phk $
PROG= ministat
DPADD= ${LIBM}
LDADD= -lm
Modified: trunk/usr.bin/ministat/ministat.1
===================================================================
--- trunk/usr.bin/ministat/ministat.1 2018-07-07 17:23:19 UTC (rev 11479)
+++ trunk/usr.bin/ministat/ministat.1 2018-07-07 17:23:51 UTC (rev 11480)
@@ -1,3 +1,4 @@
+.\" $MidnightBSD$
.\"
.\" Copyright (c) 2007 Poul-Henning Kamp
.\" All rights reserved.
@@ -23,7 +24,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $MidnightBSD$
+.\" $FreeBSD: stable/10/usr.bin/ministat/ministat.1 243079 2012-11-15 15:06:12Z eadler $
.\"
.Dd November 10, 2012
.Dt MINISTAT 1
@@ -122,12 +123,12 @@
.Sh HISTORY
The
.Nm
-command was written by Poul-Henning Kamp out of frustration
+command was written by Poul-Henning Kamp out of frustration
over all the bogus benchmark claims made by people with no
understanding of the importance of uncertainty and statistics.
.Pp
From
-.Fx 5.2
+.Fx 5.2
it has lived in the source tree as a developer tool, graduating
to the installed system from
.Fx 8.0 .
Property changes on: trunk/usr.bin/ministat/ministat.1
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/usr.bin/ministat/ministat.c
===================================================================
--- trunk/usr.bin/ministat/ministat.c 2018-07-07 17:23:19 UTC (rev 11479)
+++ trunk/usr.bin/ministat/ministat.c 2018-07-07 17:23:51 UTC (rev 11480)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
/*
* ----------------------------------------------------------------------------
* "THE BEER-WARE LICENSE" (Revision 42):
@@ -9,7 +10,7 @@
*/
#include <sys/cdefs.h>
-__MBSDID("$MidnightBSD$");
+__FBSDID("$FreeBSD: stable/10/usr.bin/ministat/ministat.c 243079 2012-11-15 15:06:12Z eadler $");
#include <stdio.h>
#include <math.h>
@@ -23,8 +24,8 @@
#define NSTUDENT 100
#define NCONF 6
-double const studentpct[] = { 80, 90, 95, 98, 99, 99.5 };
-double student [NSTUDENT + 1][NCONF] = {
+static double const studentpct[] = { 80, 90, 95, 98, 99, 99.5 };
+static double student[NSTUDENT + 1][NCONF] = {
/* inf */ { 1.282, 1.645, 1.960, 2.326, 2.576, 3.090 },
/* 1. */ { 3.078, 6.314, 12.706, 31.821, 63.657, 318.313 },
/* 2. */ { 1.886, 2.920, 4.303, 6.965, 9.925, 22.327 },
More information about the Midnightbsd-cvs
mailing list