wasm-micro-runtime/product-mini/app-samples/hello-world-cmake/print.c

13 lines
225 B
C
Raw Normal View History

/*
* Copyright (C) 2019 Intel Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*/
#include "stdio.h"
#include "string.h"
void
print_line(char *str)
{
printf("%s\n", str);
}