X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6d17036094433f0304c29b6f57922cee32b0c67c..1c4ef1f90201923b4cd81d2d41623b3d59267d4c:/include/xbt/function_types.h diff --git a/include/xbt/function_types.h b/include/xbt/function_types.h index 801a69571d..305d10a18b 100644 --- a/include/xbt/function_types.h +++ b/include/xbt/function_types.h @@ -16,17 +16,17 @@ 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() + typedef int (*xbt_main_func_t) (int argc, char *argv[]); +SG_END_DECL() #endif /* XBT_FUNCTION_TYPE_H */