summaryrefslogtreecommitdiffstats
path: root/third_party/rust/lucet-wasi-wasmsbx/tests/guests/stdin.c
blob: 137a4476028b3d5613b9c81069d0743aaf716d02 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

int main(void)
{
    char x[32];

    fgets(x, sizeof x, stdin);
    fputs(x, stdout);
    return 0;
}