X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/188feea2cf5d0362ee0863cd59f5738b07da2aae..a2a1aee909cfa9076f9dbe34778140af74dfebd3:/src/xbt/heap_private.h diff --git a/src/xbt/heap_private.h b/src/xbt/heap_private.h index 59e7dbdd89..72389dc602 100644 --- a/src/xbt/heap_private.h +++ b/src/xbt/heap_private.h @@ -1,17 +1,19 @@ -/* Authors: Arnaud Legrand */ +/* $Id$ */ + +/* Copyright (c) 2004 Arnaud Legrand. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it - under the terms of the license (GNU LGPL) which comes with this package. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ #ifndef _XBT_HEAP_PRIVATE_H #define _XBT_HEAP_PRIVATE_H -#include +#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 {