Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I think I just killed a simcall
[simgrid.git] / src / xbt / heap_private.h
index aa47023..aeed373 100644 (file)
@@ -13,7 +13,8 @@
 typedef struct xbt_heap_item {
   void *content;
   double key;
 typedef struct xbt_heap_item {
   void *content;
   double key;
-} s_xbt_heap_item_t, *xbt_heap_item_t;
+} s_xbt_heap_item_t;
+typedef s_xbt_heap_item_t* xbt_heap_item_t;
 
 typedef struct xbt_heap {
   int size;
 
 typedef struct xbt_heap {
   int size;
@@ -32,4 +33,4 @@ typedef struct xbt_heap {
 
 #define MIN_KEY_VALUE -DBL_MAX
 
 
 #define MIN_KEY_VALUE -DBL_MAX
 
-#endif /* XBT_HEAP_PRIVATE_H */
+#endif