aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/doscmd
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1999-09-16 08:26:13 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1999-09-16 08:26:13 +0000
commit5be28542797ac26e17de490f50e0830003596d38 (patch)
tree8069da00bdeed33ee5434671a0bae67379506370 /usr.bin/doscmd
parente5eb97b547f5af1e2b6e4396933dc06b93d5590e (diff)
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.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
51 files changed, 51 insertions, 51 deletions
diff --git a/usr.bin/doscmd/Makefile b/usr.bin/doscmd/Makefile
index 3d3b3a0ad6de..92397ee2525e 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
#
-# $FreeBSD$
+# $FreeBSD: src/usr.bin/doscmd/Makefile,v 1.13.2.3 1999/08/29 15:26:49 peter Exp $
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 2eeaeed31647..038fb6d540c3 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/ParseBuffer.c,v 1.1.2.1 1999/08/29 15:26:49 peter Exp $
*/
#include <stdlib.h>
diff --git a/usr.bin/doscmd/bios.c b/usr.bin/doscmd/bios.c
index c6cea9204ff5..d7835d73b63a 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/bios.c,v 1.3.2.1 1999/08/29 15:26:50 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/callback.c b/usr.bin/doscmd/callback.c
index 890c7142d454..c72eed744c94 100644
--- a/usr.bin/doscmd/callback.c
+++ b/usr.bin/doscmd/callback.c
@@ -1,6 +1,6 @@
/* No copyright?!
**
-** $FreeBSD$
+** $FreeBSD: src/usr.bin/doscmd/callback.c,v 1.1.2.1 1999/08/29 15:26:51 peter Exp $
*/
diff --git a/usr.bin/doscmd/callback.h b/usr.bin/doscmd/callback.h
index d3c656fd7c26..2a0332b9a5c4 100644
--- a/usr.bin/doscmd/callback.h
+++ b/usr.bin/doscmd/callback.h
@@ -1,7 +1,7 @@
/*
** No copyright?!
**
-** $FreeBSD$
+** $FreeBSD: src/usr.bin/doscmd/callback.h,v 1.1.2.1 1999/08/29 15:26:52 peter Exp $
*/
typedef void (*callback_t)(regcontext_t *REGS);
diff --git a/usr.bin/doscmd/cmos.c b/usr.bin/doscmd/cmos.c
index 1486c6fd348e..2cc25404f005 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/cmos.c,v 1.1.2.1 1999/08/29 15:26:52 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/com.h b/usr.bin/doscmd/com.h
index 98982a958722..32d337b11b9a 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/com.h,v 1.1.2.1 1999/08/29 15:26:53 peter Exp $
*/
/* com.h for doscmd int14.c */
diff --git a/usr.bin/doscmd/config.c b/usr.bin/doscmd/config.c
index d20aa1579a17..c5c30c85a38d 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/config.c,v 1.2.2.1 1999/08/29 15:26:54 peter Exp $
*/
#include <stdio.h>
diff --git a/usr.bin/doscmd/cpu.c b/usr.bin/doscmd/cpu.c
index c273084547e0..6eb4c781ee9b 100644
--- a/usr.bin/doscmd/cpu.c
+++ b/usr.bin/doscmd/cpu.c
@@ -1,7 +1,7 @@
/*
** No copyright ?!
**
-** $FreeBSD$
+** $FreeBSD: src/usr.bin/doscmd/cpu.c,v 1.1.2.1 1999/08/29 15:26:54 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/crt0.c b/usr.bin/doscmd/crt0.c
index ec9c706f7f5c..6fc1733cc131 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/crt0.c,v 1.1.2.1 1999/08/29 15:26:55 peter Exp $
*/
char **environ;
diff --git a/usr.bin/doscmd/cwd.c b/usr.bin/doscmd/cwd.c
index a5d6c88c83f4..77e7fdbbd51c 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/cwd.c,v 1.3.2.1 1999/08/29 15:26:56 peter Exp $
*/
#include <sys/types.h>
diff --git a/usr.bin/doscmd/cwd.h b/usr.bin/doscmd/cwd.h
index dfe7e4ea4486..58d8410bc283 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/cwd.h,v 1.1.2.1 1999/08/29 15:26:56 peter Exp $
*/
static inline u_char *
diff --git a/usr.bin/doscmd/debug.c b/usr.bin/doscmd/debug.c
index dde4fcb72c00..2110c27bc6db 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/debug.c,v 1.1.2.1 1999/08/29 15:26:57 peter Exp $
*/
diff --git a/usr.bin/doscmd/dispatch.h b/usr.bin/doscmd/dispatch.h
index 7506c534220a..f596689e9c22 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.
**
-** $FreeBSD$
+** $FreeBSD: src/usr.bin/doscmd/dispatch.h,v 1.1.2.1 1999/08/29 15:26:58 peter Exp $
*/
/*
diff --git a/usr.bin/doscmd/dos.c b/usr.bin/doscmd/dos.c
index 7b8fa0c9a911..79a9a91233f4 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/dos.c,v 1.5.2.1 1999/08/29 15:26:58 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/dos.h b/usr.bin/doscmd/dos.h
index 1ec83ac7f32c..d3220b8469d1 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/dos.h,v 1.1.2.1 1999/08/29 15:26:59 peter Exp $
*/
/*
diff --git a/usr.bin/doscmd/doscmd.c b/usr.bin/doscmd/doscmd.c
index 8e8da70f5191..da55ea7a93ab 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/doscmd.c,v 1.8.2.1 1999/08/29 15:26:59 peter Exp $
*/
#include <sys/types.h>
diff --git a/usr.bin/doscmd/doscmd.h b/usr.bin/doscmd/doscmd.h
index 1c960647d6f4..9775a9404959 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/doscmd.h,v 1.4.2.1 1999/08/29 15:27:00 peter Exp $
*/
diff --git a/usr.bin/doscmd/doscmd_loader.c b/usr.bin/doscmd/doscmd_loader.c
index d219ad52b46e..134b21498acb 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/doscmd_loader.c,v 1.1.2.1 1999/08/29 15:27:00 peter Exp $
*/
#include <stdio.h>
diff --git a/usr.bin/doscmd/ems.c b/usr.bin/doscmd/ems.c
index 1b9b04568432..e3c33336b63c 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.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/ems.c,v 1.1.2.1 1999/08/29 15:27:01 peter Exp $
*/
/*
diff --git a/usr.bin/doscmd/ems.h b/usr.bin/doscmd/ems.h
index 276bddc6bbde..1ba40deac397 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.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/ems.h,v 1.2.2.1 1999/08/29 15:27:02 peter Exp $
*/
#ifndef EMS_H
diff --git a/usr.bin/doscmd/emsdriv.S b/usr.bin/doscmd/emsdriv.S
index 40c7affd00b7..fa6a49c96b3c 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.
!
-! $FreeBSD$
+! $FreeBSD: src/usr.bin/doscmd/emsdriv.S,v 1.1.2.1 1999/08/29 15:27:02 peter Exp $
!
diff --git a/usr.bin/doscmd/emuint.c b/usr.bin/doscmd/emuint.c
index 9c230a3c0dae..cdac799dedc1 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.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/emuint.c,v 1.1.2.1 1999/08/29 15:27:03 peter Exp $
*/
#include <sys/param.h>
diff --git a/usr.bin/doscmd/emuint.h b/usr.bin/doscmd/emuint.h
index d3797687eda3..e28cd110c4da 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.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/emuint.h,v 1.1.2.1 1999/08/29 15:27:03 peter Exp $
*/
diff --git a/usr.bin/doscmd/exe.c b/usr.bin/doscmd/exe.c
index ce9a8f02d049..6f0e1a1b44e0 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
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/exe.c,v 1.1.2.1 1999/08/29 15:27:04 peter Exp $
*/
#include <stdio.h>
diff --git a/usr.bin/doscmd/int.c b/usr.bin/doscmd/int.c
index 3b72e24bebaa..8ac98bfadd64 100644
--- a/usr.bin/doscmd/int.c
+++ b/usr.bin/doscmd/int.c
@@ -1,7 +1,7 @@
/*
** No copyright?!
**
-** $FreeBSD$
+** $FreeBSD: src/usr.bin/doscmd/int.c,v 1.1.2.1 1999/08/29 15:27:04 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int10.c b/usr.bin/doscmd/int10.c
index 32bec88c1c53..8cfb98d10f5d 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/int10.c,v 1.1.2.1 1999/08/29 15:27:04 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int13.c b/usr.bin/doscmd/int13.c
index 84cb13f6eb0d..c4a35a2920db 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/int13.c,v 1.2.2.1 1999/08/29 15:27:05 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int14.c b/usr.bin/doscmd/int14.c
index 4d367eb7f4a0..ec1b0d411c15 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/int14.c,v 1.1.2.1 1999/08/29 15:27:05 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int16.c b/usr.bin/doscmd/int16.c
index 517e1312c186..b858b24c5c70 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/int16.c,v 1.1.2.1 1999/08/29 15:27:06 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int17.c b/usr.bin/doscmd/int17.c
index d62d6da9b321..b9a58dfdcc89 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/int17.c,v 1.3.2.1 1999/08/29 15:27:06 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int1a.c b/usr.bin/doscmd/int1a.c
index ff7df30f8376..3eac028d81c6 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/int1a.c,v 1.2.2.1 1999/08/29 15:27:06 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/int2f.c b/usr.bin/doscmd/int2f.c
index 8bfe3d8db71e..380158001087 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/int2f.c,v 1.2.2.1 1999/08/29 15:27:06 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/intff.c b/usr.bin/doscmd/intff.c
index fd167af6cf4e..134b6d90171b 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/intff.c,v 1.5.2.1 1999/08/29 15:27:07 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/mem.c b/usr.bin/doscmd/mem.c
index bae413f660fc..fb38997f229b 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/mem.c,v 1.1.2.1 1999/08/29 15:27:07 peter Exp $
*/
#include <stdio.h>
diff --git a/usr.bin/doscmd/mouse.c b/usr.bin/doscmd/mouse.c
index c9a07740a0fa..524db260de9f 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/mouse.c,v 1.1.2.1 1999/08/29 15:27:07 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/mouse.h b/usr.bin/doscmd/mouse.h
index b77cba48f57d..b880e52fcc51 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/mouse.h,v 1.1.2.1 1999/08/29 15:27:07 peter Exp $
*/
typedef struct {
diff --git a/usr.bin/doscmd/net.c b/usr.bin/doscmd/net.c
index b899d96599a8..96ddeb33bd53 100644
--- a/usr.bin/doscmd/net.c
+++ b/usr.bin/doscmd/net.c
@@ -1,7 +1,7 @@
/*
** No copyright!
**
-** $FreeBSD$
+** $FreeBSD: src/usr.bin/doscmd/net.c,v 1.1.2.1 1999/08/29 15:27:08 peter Exp $
**
** NetBIOS etc. hooks.
*/
diff --git a/usr.bin/doscmd/port.c b/usr.bin/doscmd/port.c
index eb2158f1e7d1..9bb80b15ca92 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/port.c,v 1.2.2.1 1999/08/29 15:27:08 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/redir.S b/usr.bin/doscmd/redir.S
index 1f40f3cce6e8..426941d94d76 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.
!
-! $FreeBSD$
+! $FreeBSD: src/usr.bin/doscmd/redir.S,v 1.1.2.1 1999/08/29 15:27:09 peter Exp $
!
diff --git a/usr.bin/doscmd/register.h b/usr.bin/doscmd/register.h
index ba0e91e03a9a..dc2957a9800b 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.
**
-** $FreeBSD$
+** $FreeBSD: src/usr.bin/doscmd/register.h,v 1.1.2.1 1999/08/29 15:27:10 peter Exp $
*/
/******************************************************************************
diff --git a/usr.bin/doscmd/setver.c b/usr.bin/doscmd/setver.c
index 5826567373ed..fcab0c0cbc14 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/setver.c,v 1.1.2.1 1999/08/29 15:27:10 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/signal.c b/usr.bin/doscmd/signal.c
index 2d91d03ce539..623e70a04da9 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/signal.c,v 1.2.2.1 1999/08/29 15:27:10 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/timer.c b/usr.bin/doscmd/timer.c
index 41b30199585a..c9d0d48e5391 100644
--- a/usr.bin/doscmd/timer.c
+++ b/usr.bin/doscmd/timer.c
@@ -1,7 +1,7 @@
/*
** No copyright?!
**
-** $FreeBSD$
+** $FreeBSD: src/usr.bin/doscmd/timer.c,v 1.1.2.1 1999/08/29 15:27:11 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/trace.c b/usr.bin/doscmd/trace.c
index 9be758fd7ba6..de1d30a91a4f 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/trace.c,v 1.1.2.1 1999/08/29 15:27:11 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/trap.c b/usr.bin/doscmd/trap.c
index 9aecde5dc1e2..09c426812791 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/trap.c,v 1.2.2.1 1999/08/29 15:27:11 peter Exp $
*/
#include "doscmd.h"
diff --git a/usr.bin/doscmd/trap.h b/usr.bin/doscmd/trap.h
index 6cba0df95c3d..27671ee905c0 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/trap.h,v 1.1.2.1 1999/08/29 15:27:11 peter Exp $
*/
#define CLI 0xfa
diff --git a/usr.bin/doscmd/tty.c b/usr.bin/doscmd/tty.c
index 380585e12e6f..4cbe98267079 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/tty.c,v 1.4.2.1 1999/08/29 15:27:12 peter Exp $
*/
#ifndef NO_X
diff --git a/usr.bin/doscmd/video.h b/usr.bin/doscmd/video.h
index 7b36eb782056..3db0fed6c24f 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
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/video.h,v 1.1.2.1 1999/08/29 15:27:12 peter Exp $
*/
/*
diff --git a/usr.bin/doscmd/xms.c b/usr.bin/doscmd/xms.c
index 9dbd4ba71f9d..1ccf906a34d0 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.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/xms.c,v 1.4.2.1 1999/08/29 15:27:12 peter Exp $
*/
/*
diff --git a/usr.bin/doscmd/xms.h b/usr.bin/doscmd/xms.h
index 51890282b24c..7aaf52195707 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.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/doscmd/xms.h,v 1.1.2.1 1999/08/29 15:27:12 peter Exp $
*/
#ifndef XMS_H