]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/binheap-test.c
ff-varints: Fixed really silly bug in handling fastbufs.
[libucw.git] / ucw / binheap-test.c
index 9589b07bf4aa61683d77aca7a17ab9721c9718af..76b1a9bc994e6eef733137dbb1f72d2e2b6fa027 100644 (file)
@@ -7,7 +7,7 @@
  *     of the GNU Lesser General Public License.
  */
 
-#include "ucw/lib.h"
+#include <ucw/lib.h>
 
 #include <stdio.h>
 #include <string.h>
@@ -16,7 +16,7 @@
 #define BH_WANT_INSERT
 #define BH_WANT_FINDMIN
 #define BH_WANT_DELETEMIN
-#include "ucw/binheap-node.h"
+#include <ucw/binheap-node.h>
 
 struct item {
   struct bh_node n;
@@ -52,7 +52,7 @@ bht_dump(struct bh_heap *h)
     bht_do_dump(b, b->last_son, 1);
 }
 
-#include "ucw/binheap.h"
+#include <ucw/binheap.h>
 
 int main(void)
 {