13 lines
380 B
Text
13 lines
380 B
Text
$NetBSD: patch-af,v 1.1 2004/02/14 04:31:56 kristerw Exp $
|
|
|
|
--- hash.h.orig Sat Feb 14 04:16:19 2004
|
|
+++ hash.h Sat Feb 14 04:16:36 2004
|
|
@@ -54,6 +54,6 @@
|
|
float ran(long *idum);
|
|
|
|
/* Macro for or'ing two hash codes */
|
|
-#define or(A, B) A.address ^= B.address; A.key ^= B.key
|
|
+#define hash_or(A, B) A.address ^= B.address; A.key ^= B.key
|
|
|
|
-#endif HASH_H
|
|
+#endif // HASH_H
|