Skip to content

Commit

Permalink
Added cvs id.
Browse files Browse the repository at this point in the history
  • Loading branch information
laffer1 committed Jul 7, 2006
1 parent e407685 commit 66d8f76
Show file tree
Hide file tree
Showing 27 changed files with 41 additions and 12 deletions.
1 change: 1 addition & 0 deletions bin/dd/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD: src/bin/dd/Makefile,v 1.18 2004/04/09 07:13:27 njl Exp $
# $MidnightBSD$

MAINTAINER= [email protected]

Expand Down
4 changes: 3 additions & 1 deletion bin/dd/args.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,16 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD: src/bin/dd/args.c,v 1.40 2004/08/15 19:10:05 rwatson Exp $ */


#ifndef lint
#if 0
static char sccsid[] = "@(#)args.c 8.3 (Berkeley) 4/2/94";
#endif
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD: src/bin/dd/args.c,v 1.40 2004/08/15 19:10:05 rwatson Exp $");
__MBSDID("$MidnightBSD$");

#include <sys/types.h>

Expand Down
4 changes: 3 additions & 1 deletion bin/dd/conv.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,16 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD: src/bin/dd/conv.c,v 1.19 2004/04/06 20:06:45 markm Exp $ */


#ifndef lint
#if 0
static char sccsid[] = "@(#)conv.c 8.3 (Berkeley) 4/2/94";
#endif
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD: src/bin/dd/conv.c,v 1.19 2004/04/06 20:06:45 markm Exp $");
__MBSDID("$MidnightBSD$");

#include <sys/param.h>

Expand Down
3 changes: 2 additions & 1 deletion bin/dd/conv_tab.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,15 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD: src/bin/dd/conv_tab.c,v 1.12 2004/04/06 20:06:45 markm Exp $ */

#ifndef lint
#if 0
static char sccsid[] = "@(#)conv_tab.c 8.1 (Berkeley) 5/31/93";
#endif
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD: src/bin/dd/conv_tab.c,v 1.12 2004/04/06 20:06:45 markm Exp $");
__MBSDID("$MidnightBSD$");

#include <sys/types.h>

Expand Down
1 change: 1 addition & 0 deletions bin/dd/dd.1
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
.\"
.\" @(#)dd.1 8.2 (Berkeley) 1/13/94
.\" $FreeBSD: src/bin/dd/dd.1,v 1.30.2.1 2005/09/24 01:59:35 keramida Exp $
.\" $MidnightBSD$
.\"
.Dd August 15, 2004
.Dt DD 1
Expand Down
3 changes: 2 additions & 1 deletion bin/dd/dd.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD: src/bin/dd/dd.c,v 1.43 2004/08/15 19:10:05 rwatson Exp $ */

#if 0
#ifndef lint
Expand All @@ -43,7 +44,7 @@ static char sccsid[] = "@(#)dd.c 8.5 (Berkeley) 4/2/94";
#endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD: src/bin/dd/dd.c,v 1.43 2004/08/15 19:10:05 rwatson Exp $");
__MBSDID("$MidnightBSD$");

#include <sys/param.h>
#include <sys/stat.h>
Expand Down
1 change: 1 addition & 0 deletions bin/dd/dd.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
*
* @(#)dd.h 8.3 (Berkeley) 4/2/94
* $FreeBSD: src/bin/dd/dd.h,v 1.22 2004/08/15 19:10:05 rwatson Exp $
* $MidnightBSD$
*/

/* Input/output stream state. */
Expand Down
1 change: 1 addition & 0 deletions bin/dd/extern.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
*
* @(#)extern.h 8.3 (Berkeley) 4/2/94
* $FreeBSD: src/bin/dd/extern.h,v 1.15 2004/08/15 19:10:05 rwatson Exp $
* $MidnightBSD$
*/

void block(void);
Expand Down
1 change: 1 addition & 0 deletions bin/dd/gen.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* This program is in the public domain
*
* $FreeBSD: src/bin/dd/gen.c,v 1.2 2005/01/10 08:39:21 imp Exp $
* $MidnightBSD$
*/

#include <stdio.h>
Expand Down
3 changes: 2 additions & 1 deletion bin/dd/misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,15 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD: src/bin/dd/misc.c,v 1.27 2004/04/06 20:06:46 markm Exp $ */

#ifndef lint
#if 0
static char sccsid[] = "@(#)misc.c 8.3 (Berkeley) 4/2/94";
#endif
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD: src/bin/dd/misc.c,v 1.27 2004/04/06 20:06:46 markm Exp $");
__MBSDID("$MidnightBSD$");

#include <sys/types.h>
#include <sys/time.h>
Expand Down
3 changes: 2 additions & 1 deletion bin/dd/position.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,15 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD: src/bin/dd/position.c,v 1.23 2004/04/06 20:06:46 markm Exp $ */

#ifndef lint
#if 0
static char sccsid[] = "@(#)position.c 8.3 (Berkeley) 4/2/94";
#endif
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD: src/bin/dd/position.c,v 1.23 2004/04/06 20:06:46 markm Exp $");
__MBSDID("$MidnightBSD$");

#include <sys/types.h>
#include <sys/mtio.h>
Expand Down
1 change: 1 addition & 0 deletions bin/df/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# @(#)Makefile 8.3 (Berkeley) 5/8/95
# $FreeBSD: src/bin/df/Makefile,v 1.18 2004/05/24 22:21:49 pjd Exp $
# $MidnightBSD$

MOUNT= ${.CURDIR}/../../sbin/mount
.PATH: ${MOUNT}
Expand Down
1 change: 1 addition & 0 deletions bin/df/df.1
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
.\"
.\" @(#)df.1 8.3 (Berkeley) 5/8/95
.\" $FreeBSD: src/bin/df/df.1,v 1.39 2005/01/16 16:41:56 ru Exp $
.\" $MidnightBSD$
.\"
.Dd April 22, 2004
.Dt DF 1
Expand Down
3 changes: 2 additions & 1 deletion bin/df/df.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD: src/bin/df/df.c,v 1.64 2005/01/10 08:39:21 imp Exp $ */

#if 0
#ifndef lint
Expand All @@ -44,7 +45,7 @@ static char sccsid[] = "@(#)df.c 8.9 (Berkeley) 5/8/95";
#endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD: src/bin/df/df.c,v 1.64 2005/01/10 08:39:21 imp Exp $");
__MBSDID("$MidnightBSD$");

#include <sys/param.h>
#include <sys/stat.h>
Expand Down
1 change: 1 addition & 0 deletions bin/domainname/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# $FreeBSD: src/bin/domainname/Makefile,v 1.7 2001/12/04 01:57:40 obrien Exp $
# $MidnightBSD$

PROG= domainname

Expand Down
1 change: 1 addition & 0 deletions bin/domainname/domainname.1
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
.\"
.\" From: @(#)hostname.1 8.1 (Berkeley) 5/31/93
.\" $FreeBSD: src/bin/domainname/domainname.1,v 1.18 2005/01/10 08:39:22 imp Exp $
.\" $MidnightBSD$
.\"
.Dd September 18, 1994
.Dt DOMAINNAME 1
Expand Down
4 changes: 3 additions & 1 deletion bin/domainname/domainname.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD: src/bin/domainname/domainname.c,v 1.19 2005/01/10 08:39:22 i
mp Exp $ */

#if 0
#ifndef lint
Expand All @@ -39,7 +41,7 @@ static char const sccsid[] = "From: @(#)hostname.c 8.1 (Berkeley) 5/31/93";
#endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD: src/bin/domainname/domainname.c,v 1.19 2005/01/10 08:39:22 imp Exp $");
__MBSDID("$MidnightBSD$");

#include <sys/param.h>

Expand Down
1 change: 1 addition & 0 deletions bin/echo/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# $FreeBSD: src/bin/echo/Makefile,v 1.8 2001/12/04 01:57:40 obrien Exp $
# $MidnightBSD$

PROG= echo

Expand Down
1 change: 1 addition & 0 deletions bin/echo/echo.1
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
.\"
.\" @(#)echo.1 8.1 (Berkeley) 7/22/93
.\" $FreeBSD: src/bin/echo/echo.1,v 1.19 2005/01/16 16:41:56 ru Exp $
.\" $MidnightBSD$
.\"
.Dd April 12, 2003
.Dt ECHO 1
Expand Down
3 changes: 2 additions & 1 deletion bin/echo/echo.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD: src/bin/echo/echo.c,v 1.18 2005/01/10 08:39:22 imp Exp $ */

#if 0
#ifndef lint
Expand All @@ -39,7 +40,7 @@ static char sccsid[] = "@(#)echo.c 8.1 (Berkeley) 5/31/93";
#endif /* not lint */
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD: src/bin/echo/echo.c,v 1.18 2005/01/10 08:39:22 imp Exp $");
--MBSDID("$MidnightBSD$");

#include <sys/types.h>
#include <sys/uio.h>
Expand Down
1 change: 1 addition & 0 deletions bin/ed/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# $FreeBSD: src/bin/ed/Makefile,v 1.31 2004/12/21 10:15:59 ru Exp $
# $MidnightBSD$

PROG= ed
SRCS= buf.c cbc.c glbl.c io.c main.c re.c sub.c undo.c
Expand Down
1 change: 1 addition & 0 deletions bin/ed/POSIX
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
$FreeBSD: src/bin/ed/POSIX,v 1.8 2000/07/17 10:40:48 sheldonh Exp $
$MidnightBSD$

This version of ed(1) is not strictly POSIX compliant, as described in
the POSIX 1003.2 document. The following is a summary of the omissions,
Expand Down
1 change: 1 addition & 0 deletions bin/ed/README
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
$FreeBSD: src/bin/ed/README,v 1.7 1999/08/27 23:14:12 peter Exp $
$MidnightBSD$

ed is an 8-bit-clean, POSIX-compliant line editor. It should work with
any regular expression package that conforms to the POSIX interface
Expand Down
4 changes: 2 additions & 2 deletions bin/ed/buf.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/

/* $FreeBSD: src/bin/ed/buf.c,v 1.22 2002/06/30 05:13:53 obrien Exp $ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD: src/bin/ed/buf.c,v 1.22 2002/06/30 05:13:53 obrien Exp $");
__MBSDID("$MidnightBSD$");

#include <sys/file.h>
#include <sys/stat.h>
Expand Down
3 changes: 2 additions & 1 deletion bin/ed/cbc.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
/* $FreeBSD: src/bin/ed/cbc.c,v 1.20 2004/04/06 20:06:47 markm Exp $ */

#include <sys/cdefs.h>
__FBSDID("$FreeBSD: src/bin/ed/cbc.c,v 1.20 2004/04/06 20:06:47 markm Exp $");
__MBSDID("$MidnightBSD");

#include <sys/types.h>
#include <errno.h>
Expand Down
1 change: 1 addition & 0 deletions bin/ed/ed.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.\" $FreeBSD: src/bin/ed/ed.1,v 1.35 2005/01/16 16:41:56 ru Exp $
.\" $MidnightBSD$
.Dd July 3, 2004
.Dt ED 1
.Os
Expand Down
1 change: 1 addition & 0 deletions bin/ed/ed.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
*
* @(#)ed.h,v 1.5 1994/02/01 00:34:39 alm Exp
* $FreeBSD: src/bin/ed/ed.h,v 1.20 2005/01/10 08:39:22 imp Exp $
* $MidnightBSD$
*/

#include <sys/param.h>
Expand Down

0 comments on commit 66d8f76

Please sign in to comment.