José Pekkarinen | 8e06506 | 2021-12-10 16:12:05 +0200 | [diff] [blame] | 1 | From f16fa9796e05ca9ea6ee764b3c1f0b8baed535e8 Mon Sep 17 00:00:00 2001 |
| 2 | From: =?UTF-8?q?Jos=C3=A9=20Pekkarinen?= <jose.pekkarinen@unikie.com> |
| 3 | Date: Fri, 10 Dec 2021 14:35:45 +0200 |
| 4 | Subject: [PATCH] Fix schedule.c:378:36: error: 'SIOCGSTAMP' undeclared |
| 5 | MIME-Version: 1.0 |
| 6 | Content-Type: text/plain; charset=UTF-8 |
| 7 | Content-Transfer-Encoding: 8bit |
| 8 | |
| 9 | Signed-off-by: José Pekkarinen <jose.pekkarinen@unikie.com> |
| 10 | --- |
| 11 | src/schedule.c | 1 + |
| 12 | 1 file changed, 1 insertion(+) |
| 13 | |
| 14 | diff --git a/src/schedule.c b/src/schedule.c |
| 15 | index 8868b01..09ab248 100644 |
| 16 | --- a/src/schedule.c |
| 17 | +++ b/src/schedule.c |
| 18 | @@ -23,6 +23,7 @@ |
| 19 | #include <fcntl.h> |
| 20 | #include <sys/ioctl.h> |
| 21 | #include <sys/socket.h> |
| 22 | +#include <linux/sockios.h> |
| 23 | |
| 24 | |
| 25 | #include "list.h" |
| 26 | -- |
| 27 | 2.30.2 |
| 28 | |