X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/95d328f9ca4dd6ccd2065c6c84aca83d43001804..dff9e15c44ab6340d27215957c56fa72fad246a2:/include/xbt/function_types.h?ds=sidebyside diff --git a/include/xbt/function_types.h b/include/xbt/function_types.h index a5044bdaba..305d10a18b 100644 --- a/include/xbt/function_types.h +++ b/include/xbt/function_types.h @@ -16,18 +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[]); + typedef int (*xbt_main_func_t) (int argc, char *argv[]); SG_END_DECL() - #endif /* XBT_FUNCTION_TYPE_H */