aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/hashmap.c
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-07-02 21:25:46 -0700
committerRuss Cox <rsc@golang.org>2009-07-02 21:25:46 -0700
commit29aa3ffbf628d2322e6b82ffed240aa78bf34900 (patch)
treeee224f802c50160614823b64d1a316a075cf55ca /src/pkg/runtime/hashmap.c
parent265674fa57ca17c81144c8742f6ba0232da4cf7c (diff)
downloadgo-29aa3ffbf628d2322e6b82ffed240aa78bf34900.tar.xz
move Structrnd to runtime.h
R=ken OCL=31125 CL=31125
Diffstat (limited to 'src/pkg/runtime/hashmap.c')
-rw-r--r--src/pkg/runtime/hashmap.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pkg/runtime/hashmap.c b/src/pkg/runtime/hashmap.c
index 49448ba780..1c8dd09cce 100644
--- a/src/pkg/runtime/hashmap.c
+++ b/src/pkg/runtime/hashmap.c
@@ -665,10 +665,6 @@ donothing(uint32 s, void *a, void *b)
typedef struct hash Hmap;
static int32 debug = 0;
-enum {
- Structrnd = sizeof(uintptr)
-};
-
// newmap(keysize uint32, valsize uint32,
// keyalg uint32, valalg uint32,
// hint uint32) (hmap *map[any]any);