diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-01-10 00:14:18 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-01-10 00:14:18 +0100 |
commit | bb54b679561fa6619515d7c34852c77d853f34a8 (patch) | |
tree | b727e6a3e252b7aa5866ae780f84d87d7c2ed774 | |
parent | 35578e79ecca029056fefb015d94d89b6f526916 (diff) |
sys/poll.h -> poll.h
-rw-r--r-- | src/Rpc.cpp | 2 | ||||
-rw-r--r-- | tools/gsr-global-hotkeys/keyboard_event.c | 2 | ||||
-rw-r--r-- | tools/gsr-global-hotkeys/keyboard_event.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/Rpc.cpp b/src/Rpc.cpp index 206b1cf..3eec98d 100644 --- a/src/Rpc.cpp +++ b/src/Rpc.cpp @@ -6,7 +6,7 @@ #include <string.h> #include <errno.h> #include <sys/stat.h> -#include <sys/fcntl.h> +#include <fcntl.h> namespace gsr { static void get_runtime_filepath(char *buffer, size_t buffer_size, const char *filename) { diff --git a/tools/gsr-global-hotkeys/keyboard_event.c b/tools/gsr-global-hotkeys/keyboard_event.c index 74332ba..554c1a2 100644 --- a/tools/gsr-global-hotkeys/keyboard_event.c +++ b/tools/gsr-global-hotkeys/keyboard_event.c @@ -11,7 +11,7 @@ #include <fcntl.h> #include <unistd.h> #include <dirent.h> -#include <sys/poll.h> +#include <poll.h> /* LINUX */ #include <linux/input.h> diff --git a/tools/gsr-global-hotkeys/keyboard_event.h b/tools/gsr-global-hotkeys/keyboard_event.h index 9904237..79fac75 100644 --- a/tools/gsr-global-hotkeys/keyboard_event.h +++ b/tools/gsr-global-hotkeys/keyboard_event.h @@ -10,7 +10,7 @@ #include <stdint.h> /* POSIX */ -#include <sys/poll.h> +#include <poll.h> /* LINUX */ #include <linux/input-event-codes.h> |