X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6d17036094433f0304c29b6f57922cee32b0c67c..27e8e9f73613b93381c59e87e4c68ec16933b2f0:/include/xbt/function_types.h diff --git a/include/xbt/function_types.h b/include/xbt/function_types.h index 801a69571d..a5044bdaba 100644 --- a/include/xbt/function_types.h +++ b/include/xbt/function_types.h @@ -16,17 +16,18 @@ SG_BEGIN_DECL() - typedef void (void_f_ppvoid_t)(void**); - typedef void (void_f_pvoid_t) (void*); - typedef void* (pvoid_f_void_t)(void); - typedef void* (pvoid_f_pvoid_t)(void*); - typedef void (void_f_void_t) (void); + typedef void (*void_f_ppvoid_t)(void**); + typedef void (*void_f_pvoid_t) (void*); + typedef void* (*pvoid_f_void_t)(void); + typedef void* (*pvoid_f_pvoid_t)(void*); + typedef void (*void_f_void_t) (void); - typedef int (int_f_void_t) (void); + typedef int (*int_f_void_t) (void); - typedef int (int_f_pvoid_pvoid_t) (void*,void*); + typedef int (*int_f_pvoid_pvoid_t) (void*,void*); typedef int (*xbt_main_func_t)(int argc, char *argv[]); + SG_END_DECL() #endif /* XBT_FUNCTION_TYPE_H */