Aller à la documentation de ce fichier.
26 #define MED_VARGS_DECL(cst1,type,cst2,varname) type varname
27 #define MED_VARGS_DEF(cst1,type,cst2,varname) varname = va_arg(params, cst1 type cst2)
29 #elif HAVE_CC_C99 || defined(__STDC__)
31 #define MED_VARGS_DECL(cst1,type,cst2,varname)
32 #define MED_VARGS_DEF(cst1,type,cst2,varname) cst1 type cst2 varname = va_arg(params, cst1 type cst2)