diff options
author | dcs <dcs@FreeBSD.org> | 1999-09-29 04:43:16 +0000 |
---|---|---|
committer | dcs <dcs@FreeBSD.org> | 1999-09-29 04:43:16 +0000 |
commit | 6a5ea9437a8341096c6e9970b79e2b12fc5c1ffe (patch) | |
tree | 461df15be3f574cfe5a11d748f12894a4fae086a /sys/boot/ficl/dict.c | |
parent | 2343e64423500146f0203d4baf74791007bf7905 (diff) | |
download | FreeBSD-src-6a5ea9437a8341096c6e9970b79e2b12fc5c1ffe.zip FreeBSD-src-6a5ea9437a8341096c6e9970b79e2b12fc5c1ffe.tar.gz |
Bring in ficl version 2.03. No version bump for loader.
Diffstat (limited to 'sys/boot/ficl/dict.c')
-rw-r--r-- | sys/boot/ficl/dict.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/boot/ficl/dict.c b/sys/boot/ficl/dict.c index 5b45a87..52858b7 100644 --- a/sys/boot/ficl/dict.c +++ b/sys/boot/ficl/dict.c @@ -17,6 +17,8 @@ ** 29 jun 1998 (sadler) added variable sized hash table support */ +/* $FreeBSD$ */ + #ifdef TESTMAIN #include <stdio.h> #include <stdlib.h> @@ -197,7 +199,6 @@ FICL_WORD *dictAppendWord2(FICL_DICT *pDict, UNS8 flags) { FICL_COUNT len = (FICL_COUNT)SI_COUNT(si); - char *name = SI_PTR(si); char *pName; FICL_WORD *pFW; @@ -232,7 +233,7 @@ FICL_WORD *dictAppendWord2(FICL_DICT *pDict, d i c t A p p e n d U N S 3 2 ** Append the specified UNS32 to the dictionary **************************************************************************/ -void dictAppendUNS32(FICL_DICT *pDict, UNS32 u) +void dictAppendUNS(FICL_DICT *pDict, UNS32 u) { *pDict->here++ = LVALUEtoCELL(u); return; |