X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d0ffc37686edcc803601f76ab51fdfed5fc2f241..4a69abcc786d029bd2962537f767d12a0f808d11:/src/xbt/heap_private.h diff --git a/src/xbt/heap_private.h b/src/xbt/heap_private.h index 6ff1e78220..aeed373793 100644 --- a/src/xbt/heap_private.h +++ b/src/xbt/heap_private.h @@ -1,20 +1,20 @@ -/* Copyright (c) 2004-2005, 2007, 2009-2012. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2004-2017. The SimGrid Team. 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. */ -#ifndef _XBT_HEAP_PRIVATE_H -#define _XBT_HEAP_PRIVATE_H +#ifndef XBT_HEAP_PRIVATE_H +#define XBT_HEAP_PRIVATE_H -#include "xbt/dynar.h" /* void_f_pvoid_t */ -#include "xbt/heap.h" #include +#include +#include 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; @@ -33,4 +33,4 @@ typedef struct xbt_heap { #define MIN_KEY_VALUE -DBL_MAX -#endif /* _XBT_HEAP_PRIVATE_H */ +#endif