X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8be7ea3f9e71cd563e91b6aba63f5c70f043fbd5..93c8beeb914dc3624c3818b21f17567345b4d36c:/include/xbt/heap.h diff --git a/include/xbt/heap.h b/include/xbt/heap.h index 29a9149284..cc50c023a3 100644 --- a/include/xbt/heap.h +++ b/include/xbt/heap.h @@ -16,6 +16,9 @@ * @{ */ /* @brief heap datatype */ +#ifdef __cplusplus +extern "C" { +#endif typedef struct xbt_heap *xbt_heap_t; XBT_PUBLIC(xbt_heap_t) xbt_heap_new(int init_size, @@ -33,6 +36,8 @@ XBT_PUBLIC(void) xbt_heap_set_update_callback(xbt_heap_t H, *, int)); XBT_PUBLIC(void *) xbt_heap_remove(xbt_heap_t H, int i); - +#ifdef __cplusplus +} +#endif /* @} */ #endif /* _XBT_HEAP_H */