mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 15:05:19 +00:00
change printf to puts in assemblyscript to match the signature (#215)
Co-authored-by: Xu Jun <jun1.xu@intel.com>
This commit is contained in:
parent
75009a2421
commit
31feaa0a88
|
@ -3,13 +3,13 @@
|
|||
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
*/
|
||||
|
||||
@external("env", "printf")
|
||||
@external("env", "puts")
|
||||
declare function printf(a: ArrayBuffer): i32;
|
||||
|
||||
export function log(a: string): void {
|
||||
printf(String.UTF8.encode(a + '\n', true));
|
||||
printf(String.UTF8.encode(a, true));
|
||||
}
|
||||
|
||||
export function log_number(a: number): void {
|
||||
printf(String.UTF8.encode(a.toString() + '\n'));
|
||||
printf(String.UTF8.encode(a.toString()));
|
||||
}
|
Loading…
Reference in New Issue
Block a user