diff options
Diffstat (limited to 'src/linux')
-rw-r--r-- | src/linux/gpio.c | 2 | ||||
-rw-r--r-- | src/linux/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/linux/gpio.c b/src/linux/gpio.c index bb07f5a0..c7f4c5bf 100644 --- a/src/linux/gpio.c +++ b/src/linux/gpio.c @@ -10,7 +10,7 @@ #include <string.h> // memset #include <sys/ioctl.h> // ioctl #include <unistd.h> // close -#include </usr/include/linux/gpio.h> // GPIOHANDLE_REQUEST_OUTPUT +#include <linux/gpio.h> // GPIOHANDLE_REQUEST_OUTPUT #include "command.h" // shutdown #include "gpio.h" // gpio_out_write #include "internal.h" // report_errno diff --git a/src/linux/main.c b/src/linux/main.c index f9ea3f6d..b260f162 100644 --- a/src/linux/main.c +++ b/src/linux/main.c @@ -4,7 +4,7 @@ // // This file may be distributed under the terms of the GNU GPLv3 license. -#include </usr/include/sched.h> // sched_setscheduler sched_get_priority_max +#include <sched.h> // sched_setscheduler sched_get_priority_max #include <stdio.h> // fprintf #include <string.h> // memset #include <unistd.h> // getopt |