]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/legacy/isastream.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / legacy / isastream.c
1 #include <stropts.h>
2 #include <fcntl.h>
3
4 int isastream(int fd)
5 {
6 return fcntl(fd, F_GETFD) < 0 ? -1 : 0;
7 }