mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-12-12 13:22:01 +00:00
21 lines
357 B
C
21 lines
357 B
C
|
#include <mpi.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
# include <cstdio>
|
||
|
#else
|
||
|
# include <stdio.h>
|
||
|
#endif
|
||
|
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
char mpilibver_str[MPI_MAX_LIBRARY_VERSION_STRING];
|
||
|
int mpilibver_len;
|
||
|
MPI_Get_library_version(mpilibver_str, &mpilibver_len);
|
||
|
#ifdef __cplusplus
|
||
|
std::puts(mpilibver_str);
|
||
|
#else
|
||
|
puts(mpilibver_str);
|
||
|
#endif
|
||
|
return 0;
|
||
|
}
|