Include compat/sys/kernel.h rather than "kernel.h".

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.
This commit is contained in:
Alex Smith 2012-07-21 14:09:08 +01:00
parent 0a592099a9
commit e6e6f56ccf
1 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,8 @@
#include "device.h" #include "device.h"
#include "kernel.h"
#include <compat/sys/kernel.h>
int ticks; int ticks;