Files
fido2-manage/openbsd-compat/posix_ioctl_check.c
2024-05-24 11:44:25 +02:00

8 lines
84 B
C

#include <sys/ioctl.h>
int
posix_ioctl_check(int fd)
{
return ioctl(fd, -1, 0);
}