xref: /aosp_15_r20/external/musl/src/legacy/isastream.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <stropts.h>
2 #include <fcntl.h>
3 
isastream(int fd)4 int isastream(int fd)
5 {
6 	return fcntl(fd, F_GETFD) < 0 ? -1 : 0;
7 }
8