1
1

Add the second part of the C++ protection and declare external functions

with the expected attribute.

This commit was SVN r12004.
Этот коммит содержится в:
George Bosilca 2006-10-05 05:30:10 +00:00
родитель 6a9f0b6ba9
Коммит c2d397ee7d

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

@ -33,7 +33,11 @@
#include "orte/mca/rmgr/rmgr_types.h"
int orte_pre_condition_transports(orte_app_context_t **app_context, size_t num_context);
#if defined(c_plusplus) || defined(__cplusplus)
extern "C" {
#endif
ORTE_DECLSPEC int orte_pre_condition_transports(orte_app_context_t **app_context, size_t num_context);
#if defined(c_plusplus) || defined(__cplusplus)
}