/* * Copyright (c) 2017 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ /* hello world example: calling functions from a static library */ #include #include #include int main(void) { printf("Hello World!\n"); mylib_hello_world(); return 0; }