summaryrefslogtreecommitdiffstats
path: root/generic/tclHash.c
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2000-09-06 16:57:26 (GMT)
committerhobbs <hobbs@noemail.net>2000-09-06 16:57:26 (GMT)
commitb0c0fb28fb6fbc06e298fc80f8b28ea2ed8944c4 (patch)
tree31a75e73be7c7307347ddc74951f8a683bc54831 /generic/tclHash.c
parentd6d8c3864dcd6889f348946b10b1fd5f0a158f24 (diff)
downloadtcl-b0c0fb28fb6fbc06e298fc80f8b28ea2ed8944c4.zip
tcl-b0c0fb28fb6fbc06e298fc80f8b28ea2ed8944c4.tar.gz
tcl-b0c0fb28fb6fbc06e298fc80f8b28ea2ed8944c4.tar.bz2
* generic/tclHash.c: fixed pedantic warning of incorrectly placed
#endif FossilOrigin-Name: 619f494f33850ddb71cc375412fe86c147e9a974
Diffstat (limited to 'generic/tclHash.c')
-rw-r--r--generic/tclHash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclHash.c b/generic/tclHash.c
index 0171216..8a0f1dc 100644
--- a/generic/tclHash.c
+++ b/generic/tclHash.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclHash.c,v 1.7 2000/07/22 01:53:24 ericm Exp $
+ * RCS: @(#) $Id: tclHash.c,v 1.8 2000/09/06 16:57:27 hobbs Exp $
*/
#include "tclInt.h"
@@ -67,8 +67,8 @@ static int CompareOneWordKeys _ANSI_ARGS_((
VOID *keyPtr, Tcl_HashEntry *hPtr));
static unsigned int HashOneWordKey _ANSI_ARGS_((
Tcl_HashTable *tablePtr,
-#endif VOID *keyPtr));
-
+ VOID *keyPtr));
+#endif
/*
* Prototypes for the string hash key methods.