X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7820e0e1436e6b1c4968e2bb7653285a5a11b0bc..2b329118ba075ec2aedefb3062236e138a5ba574:/src/xbt/mmalloc/swag.h diff --git a/src/xbt/mmalloc/swag.h b/src/xbt/mmalloc/swag.h index e9903804ca..7997da210c 100644 --- a/src/xbt/mmalloc/swag.h +++ b/src/xbt/mmalloc/swag.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2023. 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. */ @@ -9,8 +9,6 @@ #ifndef XBT_SWAG_H #define XBT_SWAG_H -#include "xbt/sysdep.h" /* size_t */ - /* * XBT_swag: a O(1) set based on linked lists * @@ -60,7 +58,6 @@ typedef struct foo { } \endcode */ -typedef s_xbt_swag_hookup_t *xbt_swag_hookup_t; struct xbt_swag { void *head; @@ -69,7 +66,5 @@ struct xbt_swag { int count; }; typedef struct xbt_swag s_xbt_swag_t; -typedef struct xbt_swag* xbt_swag_t; -typedef const struct xbt_swag* const_xbt_swag_t; #endif /* XBT_SWAG_H */