15 lines
211 B
C
15 lines
211 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "mylib.h"
|
|
#include <stdio.h>
|
|
|
|
int mylib_hello_world(void)
|
|
{
|
|
printf("mylib says: Hello World!\n");
|
|
return 0;
|
|
}
|