use FreeBSD's input.h for NetBSD and OpenBSD as well

Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1490>
This commit is contained in:
Volker Schlecht 2026-06-07 13:08:42 +00:00
parent 76f0d8a7f5
commit 3cfc22b8ff

View file

@ -1,5 +1,5 @@
#ifdef __linux__
#include "linux/input.h"
#elif __FreeBSD__
#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
#include "freebsd/input.h"
#endif