diff options
author | dcs <dcs@FreeBSD.org> | 2001-12-03 12:07:05 +0000 |
---|---|---|
committer | dcs <dcs@FreeBSD.org> | 2001-12-03 12:07:05 +0000 |
commit | 462671a6089ed33e6e260739e4ba68c935d95653 (patch) | |
tree | 2ebb1aebd688c27a807d2740ea8d2c67728cd577 /sys/boot | |
parent | 4790145648297912300fc36e15d4a7678db65397 (diff) | |
download | FreeBSD-src-462671a6089ed33e6e260739e4ba68c935d95653.zip FreeBSD-src-462671a6089ed33e6e260739e4ba68c935d95653.tar.gz |
Remove unused filed.
PR: kern/32395
Submitted by: Jonathan Mini <mini@haikugeek.com>
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/ficl/ficlstring.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/sys/boot/ficl/ficlstring.c b/sys/boot/ficl/ficlstring.c deleted file mode 100644 index aa09173..0000000 --- a/sys/boot/ficl/ficlstring.c +++ /dev/null @@ -1,29 +0,0 @@ -/******************************************************************* -** f i c l s t r i n g . c -** Forth Inspired Command Language -** ANS STRING words plus ficl extras for c-string class -** Author: John Sadler (john_sadler@alum.mit.edu) -** Created: 2 June 2000 -** -*******************************************************************/ - -/* $FreeBSD$ */ - -#ifdef TESTMAIN -#include <ctype.h> -#else -#include <stand.h> -#endif -#include <string.h> -#include "ficl.h" - - -/************************************************************************** - f o r m a t -** ( params... fmt-addr fmt-u dest-addr dest-u -- dest-addr dest-u ) -**************************************************************************/ - -void ficlStrFormat(FICL_VM *pVM) -{ - return; -} |