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

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

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

int main(void)
{
	printf("\nHelper library versions is: %s\n\n", odph_version_str());

	return 0;
}