X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d89d9da3b19df5523db58584607c0c6a2859d7ab..8f561fbf18e6995590fab6bc65e662e6797ff3fa:/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