musl-tcc/src/legacy/isastream.c

8 lines
108 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <stropts.h>
#include <fcntl.h>
int isastream(int fd)
{
return fcntl(fd, F_GETFD) < 0 ? -1 : 0;
}