mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2026-04-18 18:18:44 +00:00
18 lines
152 B
C
18 lines
152 B
C
#include <stdint.h>
|
|
|
|
int32_t
|
|
countdown(int32_t n)
|
|
{
|
|
while (n > 0) {
|
|
n = n - 1;
|
|
}
|
|
|
|
return n;
|
|
}
|
|
|
|
int32_t
|
|
noop(void)
|
|
{
|
|
return 7;
|
|
}
|