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