Index: generic/nsfFunPtrHashTable.c =================================================================== diff -u -ra963e8896fd07c345ccfa034cbd043344edbf083 -rec5702daf07d4f8ed37deb09198ebff5b3fbb1bf --- generic/nsfFunPtrHashTable.c (.../nsfFunPtrHashTable.c) (revision a963e8896fd07c345ccfa034cbd043344edbf083) +++ generic/nsfFunPtrHashTable.c (.../nsfFunPtrHashTable.c) (revision ec5702daf07d4f8ed37deb09198ebff5b3fbb1bf) @@ -52,10 +52,10 @@ * pointers safely. * */ -static unsigned int FunPtrKey(Tcl_HashTable *tablePtr, void *keyPtr); -static int CompareFunPtrKeys(void *keyPtr, Tcl_HashEntry *hPtr); -static Tcl_HashEntry *AllocFunPtrEntry(Tcl_HashTable *tablePtr, void *keyPtr); +static Tcl_HashKeyProc FunPtrKey; +static Tcl_CompareHashKeysProc CompareFunPtrKeys; +static Tcl_AllocHashEntryProc AllocFunPtrEntry; typedef struct funPtrEntry_t { Nsf_AnyFun *funPtr;