mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 15:05:19 +00:00
13 lines
225 B
C
13 lines
225 B
C
/*
|
|
* 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);
|
|
} |