isastream.c 168 字节
Newer Older
1 2
#include <stropts.h>
#include <fcntl.h>
W
w00349915 已提交
3
#include <unsupported_api.h>
4 5
int isastream(int fd)
{
W
w00349915 已提交
6
	unsupported_api(__FUNCTION__);
7 8
	return fcntl(fd, F_GETFD) < 0 ? -1 : 0;
}