]> mj.ucw.cz Git - libucw.git/blobdiff - lib/binheap-node.h
I decided to turn off cf/url-equiv for indexation. however, after the indexer
[libucw.git] / lib / binheap-node.h
index da03a800de33412b4d4aa1efc30933f063a88596..61ed5e97adc04eb4de4b457cd86c7194383af89b 100644 (file)
@@ -7,16 +7,13 @@
  *     of the GNU Lesser General Public License.
  */
 
-#define BH_NODE struct BH_PREFIX(node)
-#define BH_HEAP struct BH_PREFIX(heap)
-
-BH_NODE {
-  BH_NODE *first_son;
-  BH_NODE *last_son;
-  BH_NODE *next_sibling;
+struct bh_node {
+  struct bh_node *first_son;
+  struct bh_node *last_son;
+  struct bh_node *next_sibling;
   byte order;
 };
 
-BH_HEAP {
-  BH_NODE root;
+struct bh_heap {
+  struct bh_node root;
 };