Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
92f8396b0c8e4f146563b87f46137484cfb36e31
/
.
/
src
/
misc
/
isastream.c
blob: 4dafdb08210f5617d2ce116e1530e603b7490caf [
file
] [
log
] [
blame
]
#include
<stropts.h>
#include
<fcntl.h>
int
isastream
(
int
fd
)
{
return
fcntl
(
fd
,
F_GETFD
)
<
0
?
-
1
:
0
;
}