aboutsummaryrefslogtreecommitdiff
path: root/test/miscellaneous/odp_api_from_cpp.cpp
blob: be74c275c8e8ddced257367a1640c83587086c10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <cstdio>
#include <odp_api.h>
#include <odp/helper/linux.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;
}