diff -r 8e3ae153e2c9 -r 21a6c17f4e3e src/Hash.cpp --- a/src/Hash.cpp Thu Sep 24 10:28:50 2009 -0700 +++ b/src/Hash.cpp Mon Sep 28 23:39:08 2009 -0700 @@ -9,6 +9,7 @@ #include "Hash.h" #include "Dictionary.h" +#include #include namespace Mooseyard { @@ -110,7 +111,7 @@ for (int index=0; index<_tableSize; index++) if (_table[index].hasValue()) { const Key &key = _table[index].key(); - printf("%3i: %*s -> %p\n", + ::printf("%3i: %*s -> %p\n", index, (int)key.length,(const char*)key.bytes, _table[index].value()); } }