Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
freebsd
Edit Copy
Star
GitHub Repository:
freebsd/freebsd-src
Path:
blob/main/contrib/libfido2/openbsd-compat/posix_ioctl_check.c
3
9
5
0
7
views
1
#include <sys/ioctl.h>
2
3
int
4
posix_ioctl_check
(
int
fd
)
5
{
6
return
ioctl
(
fd
,
-
1
,
0
)
;
7
}
8
9