Make a description of ${cpu} variable not so confusing.
[monky] / src / hash.h
index 930851c..55e78ea 100644 (file)
@@ -1,6 +1,3 @@
-#ifndef HASH_H
-#define HASH_H
-
 /* ------------------------------------------------------
  * Open-addressed hash using double hash probing
  *
  * Besed on code published in _Mastering Algorithms in C_
  * by Kyle Loudon (O'Reilly 1999).
  * Modified by Philip Kovacs (kovacsp3@comcast.net)
+ * 
+ * $Id$
  * ------------------------------------------------------ */
 
+#ifndef HASH_H
+#define HASH_H
+
 typedef struct _hash_table_t {
        int     positions;
        int     size;