X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0447db21f56b3586a6b8f004c2bfbdb71d0d90a0..43af7aead466095c362d1cd34d2ddd51ae4f3ce0:/include/xbt/heap.h diff --git a/include/xbt/heap.h b/include/xbt/heap.h index ec853b622e..2f6d792121 100644 --- a/include/xbt/heap.h +++ b/include/xbt/heap.h @@ -11,11 +11,11 @@ typedef struct xbt_heap *xbt_heap_t; /* The following two definitions concern the type of the keys used for the heaps. That should be handled via configure (FIXME). */ typedef long double xbt_heap_float_t; -#define XBT_HEAP_FLOAT_T "%Lg" /* for printing purposes */ +#define XBT_HEAP_FLOAT_T "%Lg" /* for printing purposes */ /* pointer to a function freeing something (should be common to all .h : FIXME) */ -typedef void (void_f_pvoid_t) (void*); +typedef void (void_f_pvoid_t) (void *); xbt_heap_t xbt_heap_new(int num, void_f_pvoid_t free_func); void xbt_heap_free(xbt_heap_t H); @@ -26,4 +26,4 @@ void *xbt_heap_pop(xbt_heap_t H); xbt_heap_float_t xbt_heap_maxkey(xbt_heap_t H); void *xbt_heap_maxcontent(xbt_heap_t H); -#endif /* _XBT_HEAP_H */ +#endif /* _XBT_HEAP_H */