From: mquinson Date: Tue, 13 Jun 2006 08:49:29 +0000 (+0000) Subject: Add a type to our collection X-Git-Tag: v3.3~2987 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/20f32f95d1c04327ecc47db8a0fa978805a28d6f Add a type to our collection git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2371 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/xbt/function_types.h b/include/xbt/function_types.h index e80c6879c3..c3e9e8021a 100644 --- a/include/xbt/function_types.h +++ b/include/xbt/function_types.h @@ -19,6 +19,7 @@ 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 int (int_f_pvoid_pvoid_t) (void*,void*);