1
1

Correct the prototype for non GNU compilers.

This commit was SVN r15598.
Этот коммит содержится в:
George Bosilca 2007-07-25 03:50:35 +00:00
родитель 8350ba19db
Коммит c6d2e03cdd

Просмотреть файл

@ -25,7 +25,7 @@ extern "C" {
# define V_OUTPUT_VERBOSE(V, ...) OPAL_OUTPUT_VERBOSE((V, mca_pml_v.output, __VA_ARGS__))
#else
static inline void V_OUTPUT(char *format, ...) { OPAL_OUTPUT((mca_pml_v.output, "%s", format)); }
static inline void V_OUTPUT_VERBOSE(V, char * format, ...) {OPAL_OUTPUT_VERBOSE((V, mca_pml_v.output, "%s", format)); }
static inline void V_OUTPUT_VERBOSE(int V, char * format, ...) {OPAL_OUTPUT_VERBOSE((V, mca_pml_v.output, "%s", format)); }
#endif
struct mca_pml_v_t {