X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ba15f0e8e5fe9918bad627ec253f3fcae8921432..f9df6a0ce7023e4e22d83bb6c50f27bd21fab329:/include/xbt/config.h diff --git a/include/xbt/config.h b/include/xbt/config.h index 3e87a94cfe..aa14952d10 100644 --- a/include/xbt/config.h +++ b/include/xbt/config.h @@ -101,7 +101,7 @@ XBT_PUBLIC(int) xbt_cfg_is_default_value(const char *name); /** \brief Callback types. They get the name of the modified entry, and the position of the changed value */ typedef void (*xbt_cfg_cb_t) (const char * name); -XBT_PUBLIC(xbt_cfg_t) xbt_cfg_new(void); +XBT_PUBLIC(xbt_cfg_t) xbt_cfg_new(); XBT_PUBLIC(void) xbt_cfg_free(xbt_cfg_t * cfg); XBT_PUBLIC(void) xbt_cfg_dump(const char *name, const char *indent, xbt_cfg_t cfg); @@ -120,8 +120,8 @@ XBT_PUBLIC(void) xbt_cfg_register_string (const char *name, const char*default_v XBT_PUBLIC(void) xbt_cfg_register_boolean(const char *name, const char*default_val,xbt_cfg_cb_t cb_set, const char *desc); XBT_PUBLIC(void) xbt_cfg_register_alias(const char *newname, const char *oldname); -XBT_PUBLIC(void) xbt_cfg_aliases(void); -XBT_PUBLIC(void) xbt_cfg_help(void); +XBT_PUBLIC(void) xbt_cfg_aliases(); +XBT_PUBLIC(void) xbt_cfg_help(); /* @} */ /** @defgroup XBT_cfg_get Getting the stored values