summaryrefslogtreecommitdiffstats
path: root/third_party/rust/lucet-runtime-wasmsbx/tests/guests/yield_resume.c
blob: 22b68f37eb10a2e2828da918abd8b1405414715c (plain)
1
2
3
4
5
6
7
8
#include <stdint.h>

extern uint64_t lucet_runtime_test_hostcall_yield_resume(uint64_t n);

uint64_t f()
{
    return lucet_runtime_test_hostcall_yield_resume(5);
}