Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Private functions are private.
[simgrid.git] / src / xbt / heap_private.h
index 6726edb..59e7dbd 100644 (file)
@@ -7,7 +7,7 @@
 #define _XBT_HEAP_PRIVATE_H
 
 #include <stdlib.h>
-#include "xbt_heap.h"
+#include "xbt/heap.h"
 
 typedef struct xbt_heapItem {
   void *content;
@@ -28,7 +28,7 @@ typedef struct xbt_heap {
 #define KEY(H,i)     ((H->items)[i]).key
 #define CONTENT(H,i) ((H->items)[i]).content
 
-void xbt_heap_maxHeapify(xbt_heap_t H);
-void xbt_heap_increaseKey(xbt_heap_t H, int i);
+static void xbt_heap_maxHeapify(xbt_heap_t H);
+static void xbt_heap_increaseKey(xbt_heap_t H, int i);
 
 #endif                         /* _XBT_HEAP_PRIVATE_H */