aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kernel/test/os_SUITE_data/my_fds.c
blob: 704a4d1e1dee61a38ede07e87e43d84ce74d7716 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int
main(int argc, char** argv)
{
    char buff[1];
    int res = read(stdin, buff, 1);
    printf("%d", res);
}