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

Public GIT Repository
Added xbt_os_time and xbt_os_sleep. Execute in the real and simulate systems.
[simgrid.git] / src / xbt / heap_private.h
index 782947b25c16db7e3840dc175e59a096d17c9a81..72389dc602e9a1b97bba4c0ed3690e35667f5438 100644 (file)
@@ -8,12 +8,12 @@
 #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 {
   void *content;
-  xbt_heap_float_t key;
+  double key;
 } s_xbt_heapItem_t, *xbt_heapItem_t;
 
 typedef struct xbt_heap {