summaryrefslogtreecommitdiff
path: root/sys/boot/ficl
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-07-26 21:12:35 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-07-26 21:12:35 +0000
commit7f1bf9342879a7ee2dd88e11a33ae7509eab55b0 (patch)
treea37e562f560b38e8e087a744d063186d6b1e6746 /sys/boot/ficl
parenta964be6d2c35243e54bf5ce12c15339d331189cb (diff)
Diffstat (limited to 'sys/boot/ficl')
-rw-r--r--sys/boot/ficl/Makefile2
-rw-r--r--sys/boot/ficl/alpha/sysdep.c2
-rw-r--r--sys/boot/ficl/alpha/sysdep.h2
-rw-r--r--sys/boot/ficl/dict.c2
-rw-r--r--sys/boot/ficl/ficl.c2
-rw-r--r--sys/boot/ficl/ficl.h2
-rw-r--r--sys/boot/ficl/i386/sysdep.c2
-rw-r--r--sys/boot/ficl/i386/sysdep.h2
-rw-r--r--sys/boot/ficl/loader.c2
-rw-r--r--sys/boot/ficl/math64.c2
-rw-r--r--sys/boot/ficl/math64.h2
-rw-r--r--sys/boot/ficl/softwords/classes.fr2
-rw-r--r--sys/boot/ficl/softwords/ficllocal.fr2
-rw-r--r--sys/boot/ficl/softwords/freebsd.fr2
-rw-r--r--sys/boot/ficl/softwords/ifbrack.fr2
-rw-r--r--sys/boot/ficl/softwords/jhlocal.fr2
-rw-r--r--sys/boot/ficl/softwords/oo.fr2
-rw-r--r--sys/boot/ficl/softwords/softcore.awk2
-rw-r--r--sys/boot/ficl/softwords/softcore.fr2
-rw-r--r--sys/boot/ficl/softwords/string.fr2
-rw-r--r--sys/boot/ficl/stack.c2
-rw-r--r--sys/boot/ficl/testmain.c2
-rw-r--r--sys/boot/ficl/vm.c2
-rw-r--r--sys/boot/ficl/words.c2
24 files changed, 24 insertions, 24 deletions
diff --git a/sys/boot/ficl/Makefile b/sys/boot/ficl/Makefile
index 88e32995bbba..81ebfac1cef8 100644
--- a/sys/boot/ficl/Makefile
+++ b/sys/boot/ficl/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/sys/boot/ficl/Makefile,v 1.17.2.2 2000/07/06 23:44:58 obrien Exp $
#
.PATH: ${.CURDIR}/${MACHINE_ARCH}
BASE_SRCS= dict.c ficl.c math64.c stack.c vm.c words.c
diff --git a/sys/boot/ficl/alpha/sysdep.c b/sys/boot/ficl/alpha/sysdep.c
index 00b0d4acf0e3..ca388a2d5bd6 100644
--- a/sys/boot/ficl/alpha/sysdep.c
+++ b/sys/boot/ficl/alpha/sysdep.c
@@ -7,7 +7,7 @@
**
*******************************************************************/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/alpha/sysdep.c,v 1.7.2.1 2000/07/06 23:51:46 obrien Exp $ */
#ifdef TESTMAIN
#include <stdio.h>
diff --git a/sys/boot/ficl/alpha/sysdep.h b/sys/boot/ficl/alpha/sysdep.h
index 1803352b0a76..7836bc1fb736 100644
--- a/sys/boot/ficl/alpha/sysdep.h
+++ b/sys/boot/ficl/alpha/sysdep.h
@@ -32,7 +32,7 @@
** send me email at the address above.
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/alpha/sysdep.h,v 1.5.2.1 2000/07/06 23:51:46 obrien Exp $ */
#if !defined (__SYSDEP_H__)
#define __SYSDEP_H__
diff --git a/sys/boot/ficl/dict.c b/sys/boot/ficl/dict.c
index d12428c98458..3dca15997661 100644
--- a/sys/boot/ficl/dict.c
+++ b/sys/boot/ficl/dict.c
@@ -17,7 +17,7 @@
** 29 jun 1998 (sadler) added variable sized hash table support
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/dict.c,v 1.6.2.1 2000/07/06 23:51:45 obrien Exp $ */
#ifdef TESTMAIN
#include <stdio.h>
diff --git a/sys/boot/ficl/ficl.c b/sys/boot/ficl/ficl.c
index 17b9acbaaec1..b5695b9d3a08 100644
--- a/sys/boot/ficl/ficl.c
+++ b/sys/boot/ficl/ficl.c
@@ -21,7 +21,7 @@
** Code is written in ANSI C for portability.
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/ficl.c,v 1.13.2.1 2000/07/06 23:51:45 obrien Exp $ */
#ifdef TESTMAIN
#include <stdlib.h>
diff --git a/sys/boot/ficl/ficl.h b/sys/boot/ficl/ficl.h
index b78fab2603f6..37a4f4e6a818 100644
--- a/sys/boot/ficl/ficl.h
+++ b/sys/boot/ficl/ficl.h
@@ -27,7 +27,7 @@
** send me email at the address above.
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/ficl.h,v 1.11.2.1 2000/07/06 23:44:58 obrien Exp $ */
#if !defined (__FICL_H__)
#define __FICL_H__
diff --git a/sys/boot/ficl/i386/sysdep.c b/sys/boot/ficl/i386/sysdep.c
index 2a5346aa7b43..a7523604eacb 100644
--- a/sys/boot/ficl/i386/sysdep.c
+++ b/sys/boot/ficl/i386/sysdep.c
@@ -7,7 +7,7 @@
**
*******************************************************************/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/i386/sysdep.c,v 1.7 1999/09/29 04:43:07 dcs Exp $ */
#ifdef TESTMAIN
#include <stdio.h>
diff --git a/sys/boot/ficl/i386/sysdep.h b/sys/boot/ficl/i386/sysdep.h
index 99ccd5881c01..4ce73de9f9ce 100644
--- a/sys/boot/ficl/i386/sysdep.h
+++ b/sys/boot/ficl/i386/sysdep.h
@@ -32,7 +32,7 @@
** send me email at the address above.
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/i386/sysdep.h,v 1.5 1999/11/23 15:24:30 dcs Exp $ */
#if !defined (__SYSDEP_H__)
#define __SYSDEP_H__
diff --git a/sys/boot/ficl/loader.c b/sys/boot/ficl/loader.c
index 1444bbcbb4db..ad41891eb4ab 100644
--- a/sys/boot/ficl/loader.c
+++ b/sys/boot/ficl/loader.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/boot/ficl/loader.c,v 1.1.2.1 2000/07/06 23:44:59 obrien Exp $
*/
/*******************************************************************
diff --git a/sys/boot/ficl/math64.c b/sys/boot/ficl/math64.c
index e3d64e847a7f..b78eddf3e2e4 100644
--- a/sys/boot/ficl/math64.c
+++ b/sys/boot/ficl/math64.c
@@ -7,7 +7,7 @@
** be renamed!
*******************************************************************/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/math64.c,v 1.2 1999/09/29 04:43:06 dcs Exp $ */
#include "ficl.h"
#include "math64.h"
diff --git a/sys/boot/ficl/math64.h b/sys/boot/ficl/math64.h
index a98af9ab5a2c..65610cabc1b2 100644
--- a/sys/boot/ficl/math64.h
+++ b/sys/boot/ficl/math64.h
@@ -30,7 +30,7 @@
**
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/math64.h,v 1.2 1999/09/29 04:43:06 dcs Exp $ */
#if !defined (__MATH64_H__)
#define __MATH64_H__
diff --git a/sys/boot/ficl/softwords/classes.fr b/sys/boot/ficl/softwords/classes.fr
index 3d233e418b69..cb6da37857e1 100644
--- a/sys/boot/ficl/softwords/classes.fr
+++ b/sys/boot/ficl/softwords/classes.fr
@@ -3,7 +3,7 @@
\ john sadler 1 sep 98
\ Needs oop.fr
\
-\ $FreeBSD$
+\ $FreeBSD: src/sys/boot/ficl/softwords/classes.fr,v 1.1.6.1 2000/07/06 23:51:46 obrien Exp $
.( loading ficl utility classes ) cr
also oop definitions
diff --git a/sys/boot/ficl/softwords/ficllocal.fr b/sys/boot/ficl/softwords/ficllocal.fr
index c916089696c1..4023076228bd 100644
--- a/sys/boot/ficl/softwords/ficllocal.fr
+++ b/sys/boot/ficl/softwords/ficllocal.fr
@@ -7,7 +7,7 @@
\ locstate: 0 = looking for -- or }}
\ 1 = found --
\
-\ $FreeBSD$
+\ $FreeBSD: src/sys/boot/ficl/softwords/ficllocal.fr,v 1.1 1999/09/29 04:43:15 dcs Exp $
hide
0 constant zero
diff --git a/sys/boot/ficl/softwords/freebsd.fr b/sys/boot/ficl/softwords/freebsd.fr
index 96205c0808dd..6bb7ededfb5b 100644
--- a/sys/boot/ficl/softwords/freebsd.fr
+++ b/sys/boot/ficl/softwords/freebsd.fr
@@ -22,7 +22,7 @@
\ ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ ** SUCH DAMAGE.
\ **
-\ ** $FreeBSD$
+\ ** $FreeBSD: src/sys/boot/ficl/softwords/freebsd.fr,v 1.4 1999/08/28 00:39:55 peter Exp $
\ Words for use in scripts:
\ % ignore errors here
diff --git a/sys/boot/ficl/softwords/ifbrack.fr b/sys/boot/ficl/softwords/ifbrack.fr
index 6716e9366ea2..114dba2346af 100644
--- a/sys/boot/ficl/softwords/ifbrack.fr
+++ b/sys/boot/ficl/softwords/ifbrack.fr
@@ -2,7 +2,7 @@
\ ** ANS conditional compile directives [if] [else] [then]
\ ** Requires ficl 2.0 or greater...
-\ $FreeBSD$
+\ $FreeBSD: src/sys/boot/ficl/softwords/ifbrack.fr,v 1.1 1999/09/29 04:43:16 dcs Exp $
hidden dup >search ficl-set-current
diff --git a/sys/boot/ficl/softwords/jhlocal.fr b/sys/boot/ficl/softwords/jhlocal.fr
index 4b96c0287a88..37c1f74e718c 100644
--- a/sys/boot/ficl/softwords/jhlocal.fr
+++ b/sys/boot/ficl/softwords/jhlocal.fr
@@ -12,7 +12,7 @@
\ 3 = found }
\ 4 = end of line
\
-\ $FreeBSD$
+\ $FreeBSD: src/sys/boot/ficl/softwords/jhlocal.fr,v 1.1.6.1 2000/07/06 23:51:46 obrien Exp $
hide
0 constant zero
diff --git a/sys/boot/ficl/softwords/oo.fr b/sys/boot/ficl/softwords/oo.fr
index 65ddf333d348..587c06c4a007 100644
--- a/sys/boot/ficl/softwords/oo.fr
+++ b/sys/boot/ficl/softwords/oo.fr
@@ -2,7 +2,7 @@
\ ** F I C L O - O E X T E N S I O N S
\ ** john sadler aug 1998
\
-\ $FreeBSD$
+\ $FreeBSD: src/sys/boot/ficl/softwords/oo.fr,v 1.1.6.1 2000/07/06 23:51:46 obrien Exp $
.( loading ficl O-O extensions ) cr
diff --git a/sys/boot/ficl/softwords/softcore.awk b/sys/boot/ficl/softwords/softcore.awk
index 7faa1465e596..dd05b988ff4e 100644
--- a/sys/boot/ficl/softwords/softcore.awk
+++ b/sys/boot/ficl/softwords/softcore.awk
@@ -10,7 +10,7 @@
# Note! This script uses strftime() which is a gawk-ism, and the
# POSIX [[:space:]] character class.
#
-# $FreeBSD$
+# $FreeBSD: src/sys/boot/ficl/softwords/softcore.awk,v 1.3.2.1 2000/07/06 23:51:46 obrien Exp $
BEGIN \
{
diff --git a/sys/boot/ficl/softwords/softcore.fr b/sys/boot/ficl/softwords/softcore.fr
index fa4149af4459..94f36262e7e2 100644
--- a/sys/boot/ficl/softwords/softcore.fr
+++ b/sys/boot/ficl/softwords/softcore.fr
@@ -3,7 +3,7 @@
\ ** John Sadler (john_sadler@alum.mit.edu)
\ ** September, 1998
-\ $FreeBSD$
+\ $FreeBSD: src/sys/boot/ficl/softwords/softcore.fr,v 1.8.2.1 2000/07/06 23:51:46 obrien Exp $
\ ** Ficl USER variables
\ ** See words.c for primitive def'n of USER
diff --git a/sys/boot/ficl/softwords/string.fr b/sys/boot/ficl/softwords/string.fr
index a78f4eadb0bd..c71e48de8076 100644
--- a/sys/boot/ficl/softwords/string.fr
+++ b/sys/boot/ficl/softwords/string.fr
@@ -10,7 +10,7 @@
\ s" woof woof woof " str --> cat
\ str --> type cr
\
-\ $FreeBSD$
+\ $FreeBSD: src/sys/boot/ficl/softwords/string.fr,v 1.1.2.1 2000/07/06 23:51:46 obrien Exp $
.( loading ficl string class ) cr
also oop definitions
diff --git a/sys/boot/ficl/stack.c b/sys/boot/ficl/stack.c
index 059137c5b1b7..44aa35239a06 100644
--- a/sys/boot/ficl/stack.c
+++ b/sys/boot/ficl/stack.c
@@ -6,7 +6,7 @@
**
*******************************************************************/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/stack.c,v 1.3 1999/09/29 04:43:07 dcs Exp $ */
#ifdef TESTMAIN
#include <stdlib.h>
diff --git a/sys/boot/ficl/testmain.c b/sys/boot/ficl/testmain.c
index 75e1d888c3c9..895315d64ca7 100644
--- a/sys/boot/ficl/testmain.c
+++ b/sys/boot/ficl/testmain.c
@@ -3,7 +3,7 @@
**
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/testmain.c,v 1.5.2.1 2000/07/06 23:51:45 obrien Exp $ */
#include <stdlib.h>
#include <stdio.h>
diff --git a/sys/boot/ficl/vm.c b/sys/boot/ficl/vm.c
index 3608d29bbe7a..9f61f1a42279 100644
--- a/sys/boot/ficl/vm.c
+++ b/sys/boot/ficl/vm.c
@@ -13,7 +13,7 @@
** of the interp.
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/vm.c,v 1.5.2.1 2000/07/06 23:51:45 obrien Exp $ */
#ifdef TESTMAIN
#include <stdlib.h>
diff --git a/sys/boot/ficl/words.c b/sys/boot/ficl/words.c
index 621a3f7ffaa1..4ca7861073d7 100644
--- a/sys/boot/ficl/words.c
+++ b/sys/boot/ficl/words.c
@@ -7,7 +7,7 @@
**
*******************************************************************/
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/boot/ficl/words.c,v 1.23.2.1 2000/07/06 23:44:59 obrien Exp $ */
#ifdef TESTMAIN
#include <stdlib.h>