xref
: /
freebsd
/
contrib
/
libfido2
/
openbsd-compat
/
posix_ioctl_check.c
(revision 6a05f1438145c2d8c3d0e29e1d5e24a05d394453)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
sys
/
ioctl.h
>
2
3
int
4
posix_ioctl_check
(
int
fd
)
5
{
6
return
ioctl
(
fd
,
-1
, 0);
7
}
8