X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e0c3ddb2a70bac21cf1b9c57b6ef8860f9f6d924..0446fc9e3f379b9aff5e0bb44cf06d06b9e663cc:/include/xbt/function_types.h diff --git a/include/xbt/function_types.h b/include/xbt/function_types.h index c12ca70e07..a5044bdaba 100644 --- a/include/xbt/function_types.h +++ b/include/xbt/function_types.h @@ -16,20 +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[]); - typedef void* (*pvoid_pf_void_t)(void); - typedef void (*void_fp_pvoid_t)(void*); SG_END_DECL() #endif /* XBT_FUNCTION_TYPE_H */