[Midnightbsd-cvs] src [11328] trunk/usr.bin/tee/tee.c: tag

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Wed Jul 4 20:55:06 EDT 2018


Revision: 11328
          http://svnweb.midnightbsd.org/src/?rev=11328
Author:   laffer1
Date:     2018-07-04 20:55:05 -0400 (Wed, 04 Jul 2018)
Log Message:
-----------
tag

Modified Paths:
--------------
    trunk/usr.bin/tee/Makefile
    trunk/usr.bin/tee/tee.1
    trunk/usr.bin/tee/tee.c

Property Changed:
----------------
    trunk/usr.bin/tee/tee.1

Modified: trunk/usr.bin/tee/Makefile
===================================================================
--- trunk/usr.bin/tee/Makefile	2018-07-05 00:54:34 UTC (rev 11327)
+++ trunk/usr.bin/tee/Makefile	2018-07-05 00:55:05 UTC (rev 11328)
@@ -1,5 +1,6 @@
+# $MidnightBSD$
 #	@(#)Makefile	8.1 (Berkeley) 6/6/93
-# $MidnightBSD$
+# $FreeBSD: stable/10/usr.bin/tee/Makefile 87714 2001-12-12 00:06:52Z markm $
 
 PROG=	tee
 

Modified: trunk/usr.bin/tee/tee.1
===================================================================
--- trunk/usr.bin/tee/tee.1	2018-07-05 00:54:34 UTC (rev 11327)
+++ trunk/usr.bin/tee/tee.1	2018-07-05 00:55:05 UTC (rev 11328)
@@ -1,3 +1,4 @@
+.\" $MidnightBSD$
 .\" Copyright (c) 1991, 1993
 .\"	The Regents of the University of California.  All rights reserved.
 .\"
@@ -29,7 +30,7 @@
 .\" SUCH DAMAGE.
 .\"
 .\"     @(#)tee.1	8.1 (Berkeley) 6/6/93
-.\" $MidnightBSD$
+.\" $FreeBSD: stable/10/usr.bin/tee/tee.1 216370 2010-12-11 08:32:16Z joel $
 .\"
 .Dd November 13, 2007
 .Dt TEE 1


Property changes on: trunk/usr.bin/tee/tee.1
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/usr.bin/tee/tee.c
===================================================================
--- trunk/usr.bin/tee/tee.c	2018-07-05 00:54:34 UTC (rev 11327)
+++ trunk/usr.bin/tee/tee.c	2018-07-05 00:55:05 UTC (rev 11328)
@@ -56,9 +56,9 @@
 	int fd;
 	const char *name;
 } LIST;
-LIST *head;
+static LIST *head;
 
-void add(int, const char *);
+static void add(int, const char *);
 static void usage(void);
 
 int
@@ -125,7 +125,7 @@
 	exit(1);
 }
 
-void
+static void
 add(int fd, const char *name)
 {
 	LIST *p;



More information about the Midnightbsd-cvs mailing list