aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Smith <alex@alex-smith.me.uk>2012-07-21 14:09:08 +0100
committerAlex Smith <alex@alex-smith.me.uk>2012-07-21 14:09:08 +0100
commite6e6f56ccf702fe4bc09821b8064861a200122a8 (patch)
treea98cb8309aa987cbb30d71eed454d7fccb48c5a3
parent0a592099a94eb3727053c0e2ca571398dff75701 (diff)
Include compat/sys/kernel.h rather than "kernel.h".hrev44372
Using "kernel.h" was pulling in the private kernel.h header instead, which was causing a build failure on my branch since arch_cpu.h is C++-only there.
-rw-r--r--src/libs/compat/freebsd_network/clock.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/compat/freebsd_network/clock.c b/src/libs/compat/freebsd_network/clock.c
index 91a095429d..fce43ccef2 100644
--- a/src/libs/compat/freebsd_network/clock.c
+++ b/src/libs/compat/freebsd_network/clock.c
@@ -5,7 +5,8 @@
#include "device.h"
-#include "kernel.h"
+
+#include <compat/sys/kernel.h>
int ticks;