blob: b54a5b3c37fef56288c3168384ef3bad9e63d8ff [file] [log] [blame]
/*
* Copyright (c) 2017 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
/* hello world example: calling functions from a static library */
#include <zephyr.h>
#include <stdio.h>
#include <mylib.h>
void main(void)
{
printf("Hello World!\n");
mylib_hello_world();
}