aboutsummaryrefslogtreecommitdiff
path: root/test/common_plat/miscellaneous/odp_api_from_cpp.cpp
blob: 2b3078642e4a19dcbbc0cb4d1bf741867e0f63fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <cstdio>
#include <odp_api.h>
#include <odp/helper/threads.h>

int main(int argc ODP_UNUSED, const char *argv[] ODP_UNUSED)
{

	printf("\tODP API version: %s\n", odp_version_api_str());
	printf("\tODP implementation version: %s\n", odp_version_impl_str());

	return 0;
}