From 5d730a8930d735935082b25288ac4916c0a81289 Mon Sep 17 00:00:00 2001 From: Steven Fuller Date: Sun, 18 May 2008 03:07:37 -0700 Subject: [PATCH] Removed redundant prototype that accidently got left in. --- src/win95/huffman.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/win95/huffman.cpp b/src/win95/huffman.cpp index 4347959..6cd642b 100644 --- a/src/win95/huffman.cpp +++ b/src/win95/huffman.cpp @@ -62,7 +62,6 @@ static HuffEncode EncodingTable[257]; /* KJL 17:16:03 17/09/98 - Compression */ static void PerformSymbolCensus(unsigned char *sourcePtr, int length); static int HuffItemsSortSub(const void *cmp1, const void *cmp2); -static int __cdecl HuffItemsSortSub(const void *cmp1, const void *cmp2); static void SortCensusData(void); static void BuildHuffmanTree(void); static void MakeHuffTreeFromHuffItems(HuffNode *base, HuffItem *source, int count);