mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 06:55:07 +00:00
17f62ad472
Apply clang-format for core/shared and product-mini files
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);
|
|
} |