From 2110ce26512bdc1f41d57129be142e189b70cb93 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 27 Oct 2013 01:59:33 +0200 Subject: [PATCH] Add missing includes to . --- sortix/include/sortix/kernel/decl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sortix/include/sortix/kernel/decl.h b/sortix/include/sortix/kernel/decl.h index 810b8cac..fb693f11 100644 --- a/sortix/include/sortix/kernel/decl.h +++ b/sortix/include/sortix/kernel/decl.h @@ -26,6 +26,8 @@ #ifndef SORTIX_DECL_H #define SORTIX_DECL_H +#include + typedef uintptr_t addr_t; #define likely(x) __builtin_expect((x),1)