musl-tcc/src/legacy/isastream.c
2022-03-20 16:48:53 +08:00

8 lines
108 B
C

#include <stropts.h>
#include <fcntl.h>
int isastream(int fd)
{
return fcntl(fd, F_GETFD) < 0 ? -1 : 0;
}