]> AND Public Git Repository - simgrid.git/blobdiff - src/xbt/heap_private.h
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not use static buffer of log event for headers when switching to dynamic logs...
[simgrid.git] / src / xbt / heap_private.h
index 87de1eb58ac86bb852ae12f8d6523da7b7a60f96..026cbb44d5c4f732593f933ec694b997c0bcc430 100644 (file)
@@ -8,7 +8,7 @@
 #ifndef _XBT_HEAP_PRIVATE_H
 #define _XBT_HEAP_PRIVATE_H
 
-#include <stdlib.h>
+#include "xbt/dynar.h" /* void_f_pvoid_t */
 #include "xbt/heap.h"
 
 typedef struct xbt_heapItem {
@@ -20,7 +20,7 @@ typedef struct xbt_heap {
   int size;
   int count;
   xbt_heapItem_t items;
-  void_f_pvoid_t *free;
+  void_f_pvoid_t free;
 } s_xbt_heap_t;
 
 #define PARENT(i)  i/2