X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b024b9e443552c94609fc56a240cdb199a329853..647a6e65f7e55174c44e2fe40576a86bb8fb738c:/src/xbt/dict_private.h?ds=sidebyside diff --git a/src/xbt/dict_private.h b/src/xbt/dict_private.h index 6d83ae4497..15a5d69d7c 100644 --- a/src/xbt/dict_private.h +++ b/src/xbt/dict_private.h @@ -1,4 +1,4 @@ -/* dict_elm - elements of generic dictionnaries */ +/* dict_elm - elements of generic dictionaries */ /* This file is not to be loaded from anywhere but dict.cpp */ /* Copyright (c) 2004-2019. The SimGrid Team. All rights reserved. */ @@ -17,7 +17,7 @@ #include "xbt/dict.h" #include "xbt/mallocator.h" -SG_BEGIN_DECL() +SG_BEGIN_DECL typedef struct s_xbt_dict { void_f_pvoid_t free_f; @@ -37,6 +37,6 @@ XBT_PRIVATE xbt_dictelm_t xbt_dictelm_new(const char* key, int key_len, unsigned XBT_PRIVATE void xbt_dictelm_free(xbt_dict_t dict, xbt_dictelm_t element); XBT_PRIVATE void xbt_dictelm_set_data(xbt_dict_t dict, xbt_dictelm_t element, void* data); -SG_END_DECL() +SG_END_DECL #endif