Restore a few macros that were lost in the way.
[bertos.git] / mware / hashtable.h
index bbe100a3dffc541b9341369dd00890238b2ca0cb..ddfc2e37d8ea5eb226f55a0739c700e82775ef51 100755 (executable)
 
 /*
  * $Log$
+ * Revision 1.3  2004/08/14 19:37:57  rasky
+ * Merge da SC: macros.h, pool.h, BIT_CHANGE, nome dei processi, etc.
+ *
+ * Revision 1.2  2004/08/04 15:52:54  rasky
+ * Merge da SC: fixato namespace dell'include guard
+ *
  * Revision 1.1  2004/07/14 14:08:16  rasky
  * Implementazione di una tabella hash
  *
  */
 
 
-#ifndef HASHTABLE_H
-#define HASHTABLE_H
+#ifndef MWARE_HASHTABLE_H
+#define MWARE_HASHTABLE_H
 
 #include <compiler.h>
-#include <kdebug.h>
+#include <macros.h>
+#include <drv/kdebug.h>
 
 /*! Enable/disable support to declare special hash tables which maintain a copy of
  *  the key internally instead of relying on the hook to extract it from the data.
@@ -262,4 +269,4 @@ INLINE HashIterator ht_iter_next(HashIterator h)
        return h;
 }
 
-#endif /* HASHTABLE_H */
+#endif /* MWARE_HASHTABLE_H */