aboutsummaryrefslogtreecommitdiff
path: root/helper/test/version.c
blob: 6af6df490b9d0b6873add760a7645bca19e30297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright (c) 2019 Nokia
 */

#include <odp_api.h>
#include <odp/helper/odph_api.h>

#include <stdio.h>
#include <string.h>

int main(int argc ODP_UNUSED, char *argv[] ODP_UNUSED)
{
	printf("\nHelper library versions is: %s\n\n", odph_version_str());

	return 0;
}