summaryrefslogtreecommitdiffstats
path: root/usr.bin/doscmd
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-08-28 01:08:13 +0000
committerpeter <peter@FreeBSD.org>1999-08-28 01:08:13 +0000
commit3b842d34e82312a8004a7ecd65ccdb837ef72ac1 (patch)
tree09d2a69509b3515b773279fd0db04acc03aee4db /usr.bin/doscmd
parent76f0c923fe4b2a1616453876611dc76b4f6b5355 (diff)
downloadFreeBSD-src-3b842d34e82312a8004a7ecd65ccdb837ef72ac1.zip
FreeBSD-src-3b842d34e82312a8004a7ecd65ccdb837ef72ac1.tar.gz
$Id$ -> $FreeBSD$
Diffstat (limited to 'usr.bin/doscmd')
-rw-r--r--usr.bin/doscmd/Makefile2
-rw-r--r--usr.bin/doscmd/ParseBuffer.c2
-rw-r--r--usr.bin/doscmd/bios.c2
-rw-r--r--usr.bin/doscmd/callback.c2
-rw-r--r--usr.bin/doscmd/callback.h2
-rw-r--r--usr.bin/doscmd/cmos.c2
-rw-r--r--usr.bin/doscmd/com.h2
-rw-r--r--usr.bin/doscmd/config.c2
-rw-r--r--usr.bin/doscmd/cpu.c2
-rw-r--r--usr.bin/doscmd/crt0.c2
-rw-r--r--usr.bin/doscmd/cwd.c2
-rw-r--r--usr.bin/doscmd/cwd.h2
-rw-r--r--usr.bin/doscmd/debug.c2
-rw-r--r--usr.bin/doscmd/dispatch.h2
-rw-r--r--usr.bin/doscmd/dos.c2
-rw-r--r--usr.bin/doscmd/dos.h2
-rw-r--r--usr.bin/doscmd/doscmd.12
-rw-r--r--usr.bin/doscmd/doscmd.c2
-rw-r--r--usr.bin/doscmd/doscmd.h2
-rw-r--r--usr.bin/doscmd/doscmd_loader.c2
-rw-r--r--usr.bin/doscmd/ems.c2
-rw-r--r--usr.bin/doscmd/ems.h2
-rw-r--r--usr.bin/doscmd/emsdriv.S2
-rw-r--r--usr.bin/doscmd/emuint.c2
-rw-r--r--usr.bin/doscmd/emuint.h2
-rw-r--r--usr.bin/doscmd/exe.c2
-rw-r--r--usr.bin/doscmd/int.c2
-rw-r--r--usr.bin/doscmd/int10.c2
-rw-r--r--usr.bin/doscmd/int13.c2
-rw-r--r--usr.bin/doscmd/int14.c2
-rw-r--r--usr.bin/doscmd/int16.c2
-rw-r--r--usr.bin/doscmd/int17.c2
-rw-r--r--usr.bin/doscmd/int1a.c2
-rw-r--r--usr.bin/doscmd/int2f.c2
-rw-r--r--usr.bin/doscmd/intff.c2
-rw-r--r--usr.bin/doscmd/mem.c2
-rw-r--r--usr.bin/doscmd/mouse.c2
-rw-r--r--usr.bin/doscmd/mouse.h2
-rw-r--r--usr.bin/doscmd/net.c2
-rw-r--r--usr.bin/doscmd/port.c2
-rw-r--r--usr.bin/doscmd/redir.S2
-rw-r--r--usr.bin/doscmd/register.h2
-rw-r--r--usr.bin/doscmd/setver.c2
-rw-r--r--usr.bin/doscmd/signal.c2
-rw-r--r--usr.bin/doscmd/timer.c2
-rw-r--r--usr.bin/doscmd/trace.c2
-rw-r--r--usr.bin/doscmd/trap.c2
-rw-r--r--usr.bin/doscmd/trap.h2
-rw-r--r--usr.bin/doscmd/tty.c2
-rw-r--r--usr.bin/doscmd/video.h2
-rw-r--r--usr.bin/doscmd/xms.c2
-rw-r--r--usr.bin/doscmd/xms.h2
52 files changed, 52 insertions, 52 deletions
diff --git a/usr.bin/doscmd/Makefile b/usr.bin/doscmd/Makefile
index e6a364d..d620c8e 100644
--- a/usr.bin/doscmd/Makefile
+++ b/usr.bin/doscmd/Makefile
@@ -1,6 +1,6 @@
# from BSDI Makefile,v 2.6 1996/04/08 20:06:40 bostic Exp
#
-# $Id: Makefile,v 1.18 1999/03/16 20:57:19 imp Exp $
+# $FreeBSD$
PROG= doscmd
SRCS= AsyncIO.c ParseBuffer.c bios.c callback.c cpu.c dos.c cmos.c config.c \
diff --git a/usr.bin/doscmd/ParseBuffer.c b/usr.bin/doscmd/ParseBuffer.c
index 88c4771..2eeaeed 100644
--- a/usr.bin/doscmd/ParseBuffer.c
+++ b/usr.bin/doscmd/ParseBuffer.c
@@ -29,7 +29,7 @@
*
* BSDI ParseBuffer.c,v 2.2 1996/04/08 19:32:15 bostic Exp
*
- * $Id: ParseBuffer.c,v 1.2 1996/09/22 05:52:53 miff Exp $
+ * $FreeBSD$
*/
#include <stdlib.h>
diff --git a/usr.bin/doscmd/bios.c b/usr.bin/doscmd/bios.c
index ccfdce8..c6cea92 100644
--- a/usr.bin/doscmd/bios.c
+++ b/usr.bin/doscmd/bios.c
@@ -29,7 +29,7 @@
*
* BSDI bios.c,v 2.3 1996/04/08 19:32:19 bostic Exp
*
- * $Id: bios.c,v 1.2 1997/08/15 23:41:23 jlemon Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/callback.c b/usr.bin/doscmd/callback.c
index 4b333ec..890c714 100644
--- a/usr.bin/doscmd/callback.c
+++ b/usr.bin/doscmd/callback.c
@@ -1,6 +1,6 @@
/* No copyright?!
**
-** $Id: callback.c,v 1.3 1996/09/24 00:02:25 miff Exp $
+** $FreeBSD$
*/
diff --git a/usr.bin/doscmd/callback.h b/usr.bin/doscmd/callback.h
index f81127e..d3c656f 100644
--- a/usr.bin/doscmd/callback.h
+++ b/usr.bin/doscmd/callback.h
@@ -1,7 +1,7 @@
/*
** No copyright?!
**
-** $Id: callback.h,v 1.4 1996/09/22 15:42:48 miff Exp $
+** $FreeBSD$
*/
typedef void (*callback_t)(regcontext_t *REGS);
diff --git a/usr.bin/doscmd/cmos.c b/usr.bin/doscmd/cmos.c
index 115cbc7..1486c6f 100644
--- a/usr.bin/doscmd/cmos.c
+++ b/usr.bin/doscmd/cmos.c
@@ -29,7 +29,7 @@
*
* BSDI cmos.c,v 2.3 1996/04/08 19:32:20 bostic Exp
*
- * $Id: cmos.c,v 1.2 1996/09/18 16:12:24 miff Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/com.h b/usr.bin/doscmd/com.h
index c2857e2..98982a9 100644
--- a/usr.bin/doscmd/com.h
+++ b/usr.bin/doscmd/com.h
@@ -29,7 +29,7 @@
*
* BSDI com.h,v 2.2 1996/04/08 19:32:21 bostic Exp
*
- * $Id: com.h,v 1.3 1996/09/22 15:42:48 miff Exp $
+ * $FreeBSD$
*/
/* com.h for doscmd int14.c */
diff --git a/usr.bin/doscmd/config.c b/usr.bin/doscmd/config.c
index 823c00a..d20aa15 100644
--- a/usr.bin/doscmd/config.c
+++ b/usr.bin/doscmd/config.c
@@ -29,7 +29,7 @@
*
* BSDI config.c,v 2.2 1996/04/08 19:32:22 bostic Exp
*
- * $Id: config.c,v 1.1 1997/08/09 01:42:35 dyson Exp $
+ * $FreeBSD$
*/
#include <stdio.h>
diff --git a/usr.bin/doscmd/cpu.c b/usr.bin/doscmd/cpu.c
index bad8725..c273084 100644
--- a/usr.bin/doscmd/cpu.c
+++ b/usr.bin/doscmd/cpu.c
@@ -1,7 +1,7 @@
/*
** No copyright ?!
**
-** $Id: cpu.c,v 1.5 1996/09/25 11:05:54 miff Exp $
+** $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/crt0.c b/usr.bin/doscmd/crt0.c
index 9b3779b..ec9c706 100644
--- a/usr.bin/doscmd/crt0.c
+++ b/usr.bin/doscmd/crt0.c
@@ -29,7 +29,7 @@
*
* BSDI crt0.c,v 2.2 1996/04/08 19:32:24 bostic Exp
*
- * $Id: crt0.c,v 1.2 1996/09/18 16:12:25 miff Exp $
+ * $FreeBSD$
*/
char **environ;
diff --git a/usr.bin/doscmd/cwd.c b/usr.bin/doscmd/cwd.c
index 6a9b60f..a5d6c88 100644
--- a/usr.bin/doscmd/cwd.c
+++ b/usr.bin/doscmd/cwd.c
@@ -29,7 +29,7 @@
*
* BSDI cwd.c,v 2.2 1996/04/08 19:32:25 bostic Exp
*
- * $Id: cwd.c,v 1.2 1998/07/01 19:56:13 imp Exp $
+ * $FreeBSD$
*/
#include <sys/types.h>
diff --git a/usr.bin/doscmd/cwd.h b/usr.bin/doscmd/cwd.h
index 323512f..dfe7e4e 100644
--- a/usr.bin/doscmd/cwd.h
+++ b/usr.bin/doscmd/cwd.h
@@ -29,7 +29,7 @@
*
* BSDI cwd.h,v 2.2 1996/04/08 19:32:26 bostic Exp
*
- * $Id: cwd.h,v 1.3 1996/09/23 09:59:23 miff Exp $
+ * $FreeBSD$
*/
static inline u_char *
diff --git a/usr.bin/doscmd/debug.c b/usr.bin/doscmd/debug.c
index e736f8d..dde4fcb 100644
--- a/usr.bin/doscmd/debug.c
+++ b/usr.bin/doscmd/debug.c
@@ -31,7 +31,7 @@
*
* from: BSDI doscmd.c,v 2.3 1996/04/08 19:32:30 bostic Exp
*
- * $Id: debug.c,v 1.5 1996/09/25 00:03:43 miff Exp $
+ * $FreeBSD$
*/
diff --git a/usr.bin/doscmd/dispatch.h b/usr.bin/doscmd/dispatch.h
index 59620f1..7506c53 100644
--- a/usr.bin/doscmd/dispatch.h
+++ b/usr.bin/doscmd/dispatch.h
@@ -23,7 +23,7 @@
** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
** SUCH DAMAGE.
**
-** $Id: dispatch.h,v 1.3 1996/09/22 05:52:56 miff Exp $
+** $FreeBSD$
*/
/*
diff --git a/usr.bin/doscmd/dos.c b/usr.bin/doscmd/dos.c
index b813304..7b8fa0c 100644
--- a/usr.bin/doscmd/dos.c
+++ b/usr.bin/doscmd/dos.c
@@ -31,7 +31,7 @@
*
* BSDI int21.c,v 2.2 1996/04/08 19:32:51 bostic Exp
*
- * $Id: dos.c,v 1.4 1998/07/16 23:54:23 imp Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/dos.h b/usr.bin/doscmd/dos.h
index 030438e..1ec83ac 100644
--- a/usr.bin/doscmd/dos.h
+++ b/usr.bin/doscmd/dos.h
@@ -29,7 +29,7 @@
*
* BSDI dos.h,v 2.2 1996/04/08 19:32:28 bostic Exp
*
- * $Id: dos.h,v 1.7 1996/09/23 09:59:24 miff Exp $
+ * $FreeBSD$
*/
/*
diff --git a/usr.bin/doscmd/doscmd.1 b/usr.bin/doscmd/doscmd.1
index 08b320c..4d039a4 100644
--- a/usr.bin/doscmd/doscmd.1
+++ b/usr.bin/doscmd/doscmd.1
@@ -28,7 +28,7 @@
.\" SUCH DAMAGE.
.\"
.\" BSDI doscmd.1,v 2.3 1996/04/08 19:32:29 bostic Exp
-.\" $Id: doscmd.1,v 1.9 1999/07/12 20:23:25 nik Exp $
+.\" $FreeBSD$
.\"
.Dd January 30, 1995
.Dt DOSCMD 1
diff --git a/usr.bin/doscmd/doscmd.c b/usr.bin/doscmd/doscmd.c
index 454a38b..8e8da70 100644
--- a/usr.bin/doscmd/doscmd.c
+++ b/usr.bin/doscmd/doscmd.c
@@ -29,7 +29,7 @@
*
* BSDI doscmd.c,v 2.3 1996/04/08 19:32:30 bostic Exp
*
- * $Id: doscmd.c,v 1.7 1998/07/16 23:54:25 imp Exp $
+ * $FreeBSD$
*/
#include <sys/types.h>
diff --git a/usr.bin/doscmd/doscmd.h b/usr.bin/doscmd/doscmd.h
index 224f9ef..1c96064 100644
--- a/usr.bin/doscmd/doscmd.h
+++ b/usr.bin/doscmd/doscmd.h
@@ -29,7 +29,7 @@
*
* BSDI doscmd.h,v 2.3 1996/04/08 19:32:32 bostic Exp
*
- * $Id: doscmd.h,v 1.3 1997/09/30 22:03:41 jlemon Exp $
+ * $FreeBSD$
*/
diff --git a/usr.bin/doscmd/doscmd_loader.c b/usr.bin/doscmd/doscmd_loader.c
index 7032bfb..d219ad5 100644
--- a/usr.bin/doscmd/doscmd_loader.c
+++ b/usr.bin/doscmd/doscmd_loader.c
@@ -29,7 +29,7 @@
*
* BSDI doscmd_loader.c,v 2.3 1996/04/08 19:32:33 bostic Exp
*
- * $Id: doscmd_loader.c,v 1.2 1996/09/22 05:52:59 miff Exp $
+ * $FreeBSD$
*/
#include <stdio.h>
diff --git a/usr.bin/doscmd/ems.c b/usr.bin/doscmd/ems.c
index 25b68db..1b9b045 100644
--- a/usr.bin/doscmd/ems.c
+++ b/usr.bin/doscmd/ems.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
/*
diff --git a/usr.bin/doscmd/ems.h b/usr.bin/doscmd/ems.h
index 990866c..276bddc 100644
--- a/usr.bin/doscmd/ems.h
+++ b/usr.bin/doscmd/ems.h
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: ems.h,v 1.1 1997/09/30 22:03:45 jlemon Exp $
+ * $FreeBSD$
*/
#ifndef EMS_H
diff --git a/usr.bin/doscmd/emsdriv.S b/usr.bin/doscmd/emsdriv.S
index ffa2c98..40c7aff 100644
--- a/usr.bin/doscmd/emsdriv.S
+++ b/usr.bin/doscmd/emsdriv.S
@@ -24,7 +24,7 @@
! (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
! THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
!
-! $Id$
+! $FreeBSD$
!
diff --git a/usr.bin/doscmd/emuint.c b/usr.bin/doscmd/emuint.c
index 1b2bfdd7..9c230a3 100644
--- a/usr.bin/doscmd/emuint.c
+++ b/usr.bin/doscmd/emuint.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
#include <sys/param.h>
diff --git a/usr.bin/doscmd/emuint.h b/usr.bin/doscmd/emuint.h
index d90b60e..d379768 100644
--- a/usr.bin/doscmd/emuint.h
+++ b/usr.bin/doscmd/emuint.h
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
diff --git a/usr.bin/doscmd/exe.c b/usr.bin/doscmd/exe.c
index 0314a62..ce9a8f0 100644
--- a/usr.bin/doscmd/exe.c
+++ b/usr.bin/doscmd/exe.c
@@ -28,7 +28,7 @@
* SUCH DAMAGE.
*
* BSDI exe.c,v 2.2 1996/04/08 19:32:34 bostic Exp
- * $Id: exe.c,v 1.3 1996/09/22 06:26:01 miff Exp $
+ * $FreeBSD$
*/
#include <stdio.h>
diff --git a/usr.bin/doscmd/int.c b/usr.bin/doscmd/int.c
index 2385f56..3b72e24 100644
--- a/usr.bin/doscmd/int.c
+++ b/usr.bin/doscmd/int.c
@@ -1,7 +1,7 @@
/*
** No copyright?!
**
-** $Id: int.c,v 1.4 1997/03/18 02:36:56 msmith Exp $
+** $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int10.c b/usr.bin/doscmd/int10.c
index 0f02cbd..32bec88 100644
--- a/usr.bin/doscmd/int10.c
+++ b/usr.bin/doscmd/int10.c
@@ -29,7 +29,7 @@
*
* BSDI int10.c,v 2.3 1996/04/08 19:32:40 bostic Exp
*
- * $Id: int10.c,v 1.2 1996/09/22 05:53:00 miff Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int13.c b/usr.bin/doscmd/int13.c
index 2e6db4b..84cb13f 100644
--- a/usr.bin/doscmd/int13.c
+++ b/usr.bin/doscmd/int13.c
@@ -29,7 +29,7 @@
*
* BSDI int13.c,v 2.3 1996/04/08 19:32:43 bostic Exp
*
- * $Id: int13.c,v 1.1 1997/08/09 01:42:46 dyson Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int14.c b/usr.bin/doscmd/int14.c
index 602bb80..4d367eb 100644
--- a/usr.bin/doscmd/int14.c
+++ b/usr.bin/doscmd/int14.c
@@ -32,7 +32,7 @@
*
* BSDI int14.c,v 2.2 1996/04/08 19:32:45 bostic Exp
*
- * $Id: int14.c,v 1.3 1996/09/22 15:42:53 miff Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int16.c b/usr.bin/doscmd/int16.c
index ccf99cd..517e131 100644
--- a/usr.bin/doscmd/int16.c
+++ b/usr.bin/doscmd/int16.c
@@ -29,7 +29,7 @@
*
* BSDI int16.c,v 2.2 1996/04/08 19:32:47 bostic Exp
*
- * $Id: int16.c,v 1.3 1996/09/22 15:42:54 miff Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int17.c b/usr.bin/doscmd/int17.c
index 8862191..d62d6da 100644
--- a/usr.bin/doscmd/int17.c
+++ b/usr.bin/doscmd/int17.c
@@ -29,7 +29,7 @@
*
* BSDI int17.c,v 2.2 1996/04/08 19:32:48 bostic Exp
*
- * $Id: int17.c,v 1.2 1998/01/22 02:44:54 msmith Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int1a.c b/usr.bin/doscmd/int1a.c
index 7a97330..ff7df30 100644
--- a/usr.bin/doscmd/int1a.c
+++ b/usr.bin/doscmd/int1a.c
@@ -29,7 +29,7 @@
*
* BSDI int1a.c,v 2.2 1996/04/08 19:32:49 bostic Exp
*
- * $Id: int1a.c,v 1.1 1997/08/09 01:42:49 dyson Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int2f.c b/usr.bin/doscmd/int2f.c
index e8fecb3..8bfe3d8 100644
--- a/usr.bin/doscmd/int2f.c
+++ b/usr.bin/doscmd/int2f.c
@@ -29,7 +29,7 @@
*
* BSDI int2f.c,v 2.2 1996/04/08 19:32:53 bostic Exp
*
- * $Id: int2f.c,v 1.1 1997/08/09 01:42:50 dyson Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/intff.c b/usr.bin/doscmd/intff.c
index a32c646..fd167af 100644
--- a/usr.bin/doscmd/intff.c
+++ b/usr.bin/doscmd/intff.c
@@ -29,7 +29,7 @@
*
* BSDI intff.c,v 2.2 1996/04/08 19:32:56 bostic Exp
*
- * $Id: intff.c,v 1.4 1998/07/02 05:12:53 imp Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/mem.c b/usr.bin/doscmd/mem.c
index 025d86e..bae413f 100644
--- a/usr.bin/doscmd/mem.c
+++ b/usr.bin/doscmd/mem.c
@@ -29,7 +29,7 @@
*
* BSDI mem.c,v 2.2 1996/04/08 19:32:57 bostic Exp
*
- * $Id: mem.c,v 1.4 1996/09/22 15:42:57 miff Exp $
+ * $FreeBSD$
*/
#include <stdio.h>
diff --git a/usr.bin/doscmd/mouse.c b/usr.bin/doscmd/mouse.c
index 8593667..c9a0774 100644
--- a/usr.bin/doscmd/mouse.c
+++ b/usr.bin/doscmd/mouse.c
@@ -29,7 +29,7 @@
*
* BSDI int33.c,v 2.2 1996/04/08 19:32:54 bostic Exp
*
- * $Id: mouse.c,v 1.3 1996/09/22 15:42:58 miff Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/mouse.h b/usr.bin/doscmd/mouse.h
index e819c50..b77cba4 100644
--- a/usr.bin/doscmd/mouse.h
+++ b/usr.bin/doscmd/mouse.h
@@ -29,7 +29,7 @@
*
* BSDI mouse.h,v 2.2 1996/04/08 19:32:58 bostic Exp
*
- * $Id: mouse.h,v 1.3 1996/09/22 15:42:58 miff Exp $
+ * $FreeBSD$
*/
typedef struct {
diff --git a/usr.bin/doscmd/net.c b/usr.bin/doscmd/net.c
index 464113f..b899d96 100644
--- a/usr.bin/doscmd/net.c
+++ b/usr.bin/doscmd/net.c
@@ -1,7 +1,7 @@
/*
** No copyright!
**
-** $Id: net.c,v 1.3 1996/09/22 15:42:58 miff Exp $
+** $FreeBSD$
**
** NetBIOS etc. hooks.
*/
diff --git a/usr.bin/doscmd/port.c b/usr.bin/doscmd/port.c
index c9a06b2..eb2158f 100644
--- a/usr.bin/doscmd/port.c
+++ b/usr.bin/doscmd/port.c
@@ -29,7 +29,7 @@
*
* BSDI port.c,v 2.2 1996/04/08 19:33:03 bostic Exp
*
- * $Id: port.c,v 1.1 1997/08/09 01:42:54 dyson Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/redir.S b/usr.bin/doscmd/redir.S
index 4cb4e2e..1f40f3c 100644
--- a/usr.bin/doscmd/redir.S
+++ b/usr.bin/doscmd/redir.S
@@ -24,7 +24,7 @@
! (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
! THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
!
-! $Id$
+! $FreeBSD$
!
diff --git a/usr.bin/doscmd/register.h b/usr.bin/doscmd/register.h
index 1b6cecc..ba0e91e 100644
--- a/usr.bin/doscmd/register.h
+++ b/usr.bin/doscmd/register.h
@@ -23,7 +23,7 @@
** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
** SUCH DAMAGE.
**
-** $Id: register.h,v 1.4 1997/03/18 02:36:56 msmith Exp $
+** $FreeBSD$
*/
/******************************************************************************
diff --git a/usr.bin/doscmd/setver.c b/usr.bin/doscmd/setver.c
index 2ae3518..5826567 100644
--- a/usr.bin/doscmd/setver.c
+++ b/usr.bin/doscmd/setver.c
@@ -29,7 +29,7 @@
*
* BSDI setver.c,v 2.2 1996/04/08 19:33:04 bostic Exp
*
- * $Id: setver.c,v 1.2 1996/09/22 05:53:09 miff Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/signal.c b/usr.bin/doscmd/signal.c
index f42e4cd..7041597 100644
--- a/usr.bin/doscmd/signal.c
+++ b/usr.bin/doscmd/signal.c
@@ -29,7 +29,7 @@
*
* BSDI signal.c,v 2.2 1996/04/08 19:33:06 bostic Exp
*
- * $Id: signal.c,v 1.2 1998/02/28 16:02:24 jraynard Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/timer.c b/usr.bin/doscmd/timer.c
index afaa69f..41b3019 100644
--- a/usr.bin/doscmd/timer.c
+++ b/usr.bin/doscmd/timer.c
@@ -1,7 +1,7 @@
/*
** No copyright?!
**
-** $Id: timer.c,v 1.3 1996/09/22 15:42:59 miff Exp $
+** $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/trace.c b/usr.bin/doscmd/trace.c
index 65a6ae3..9be758f 100644
--- a/usr.bin/doscmd/trace.c
+++ b/usr.bin/doscmd/trace.c
@@ -29,7 +29,7 @@
*
* BSDI trace.c,v 2.2 1996/04/08 19:33:07 bostic Exp
*
- * $Id: trace.c,v 1.3 1996/09/25 00:03:44 miff Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/trap.c b/usr.bin/doscmd/trap.c
index f810750..8b41caa 100644
--- a/usr.bin/doscmd/trap.c
+++ b/usr.bin/doscmd/trap.c
@@ -29,7 +29,7 @@
*
* BSDI trap.c,v 2.3 1996/04/08 19:33:08 bostic Exp
*
- * $Id: trap.c,v 1.3 1999/07/06 07:15:10 cracauer Exp $
+ * $FreeBSD$
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/trap.h b/usr.bin/doscmd/trap.h
index 2aa4e9d..6cba0df 100644
--- a/usr.bin/doscmd/trap.h
+++ b/usr.bin/doscmd/trap.h
@@ -29,7 +29,7 @@
*
* BSDI trap.h,v 2.2 1996/04/08 19:33:09 bostic Exp
*
- * $Id: trap.h,v 1.2 1996/09/22 05:53:11 miff Exp $
+ * $FreeBSD$
*/
#define CLI 0xfa
diff --git a/usr.bin/doscmd/tty.c b/usr.bin/doscmd/tty.c
index ef42817..d18f157 100644
--- a/usr.bin/doscmd/tty.c
+++ b/usr.bin/doscmd/tty.c
@@ -29,7 +29,7 @@
*
* BSDI tty.c,v 2.4 1996/04/08 22:03:27 prb Exp
*
- * $Id: tty.c,v 1.4 1998/02/22 23:36:54 msmith Exp $
+ * $FreeBSD$
*/
#ifndef NO_X
diff --git a/usr.bin/doscmd/video.h b/usr.bin/doscmd/video.h
index 2ddded1..7b36eb7 100644
--- a/usr.bin/doscmd/video.h
+++ b/usr.bin/doscmd/video.h
@@ -29,7 +29,7 @@
*
* BSDI video.h,v 2.2 1996/04/08 19:33:12 bostic Exp
*
- * $Id: video.h,v 1.2 1996/09/22 05:53:12 miff Exp $
+ * $FreeBSD$
*/
/*
diff --git a/usr.bin/doscmd/xms.c b/usr.bin/doscmd/xms.c
index b016a0a..9dbd4ba 100644
--- a/usr.bin/doscmd/xms.c
+++ b/usr.bin/doscmd/xms.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: xms.c,v 1.3 1997/09/30 22:04:06 jlemon Exp $
+ * $FreeBSD$
*/
/*
diff --git a/usr.bin/doscmd/xms.h b/usr.bin/doscmd/xms.h
index 14a223f..5189028 100644
--- a/usr.bin/doscmd/xms.h
+++ b/usr.bin/doscmd/xms.h
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
#ifndef XMS_H
OpenPOWER on IntegriCloud