From 7100efb7382c41d4f436ba73b093e0a23f592046 Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Sun, 20 Jun 2010 08:03:06 +0000 Subject: [PATCH] Add a missing prototype PR: 145232 Submitted by: gcooper MFC after: 1 week --- sys/boot/ficl/ficl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/boot/ficl/ficl.h b/sys/boot/ficl/ficl.h index 7892ee963d7f..6fe9e10aba20 100644 --- a/sys/boot/ficl/ficl.h +++ b/sys/boot/ficl/ficl.h @@ -757,6 +757,7 @@ void dictAppendUNS (FICL_DICT *pDict, FICL_UNS u); int dictCellsAvail (FICL_DICT *pDict); int dictCellsUsed (FICL_DICT *pDict); void dictCheck (FICL_DICT *pDict, FICL_VM *pVM, int n); +void dictCheckThreshold(FICL_DICT* dp); FICL_DICT *dictCreate(unsigned nCELLS); FICL_DICT *dictCreateHashed(unsigned nCells, unsigned nHash); FICL_HASH *dictCreateWordlist(FICL_DICT *dp, int nBuckets);