1 /*
2  * Copyright (c) 2017 Intel Corporation
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include "mylib.h"
8 #include <stdio.h>
9 
mylib_hello_world(void)10 int mylib_hello_world(void)
11 {
12 	printf("mylib says: Hello World!\n");
13 	return 0;
14 }
15