xref
: /
freebsd
/
contrib
/
libfido2
/
openbsd-compat
/
posix_ioctl_check.c
(revision 8881d206f4e68b564c2c5f50fc717086fc3e827a)
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