From c930ae2bd8b6f626ddec0628ae6b38e3134e3c97 Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Mon, 16 Sep 2019 14:04:34 +0430 Subject: [PATCH] Avoid stdint.h in Kernel module compiles --- src/hb-common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hb-common.h b/src/hb-common.h index edd9ffb86..9f1764bdc 100644 --- a/src/hb-common.h +++ b/src/hb-common.h @@ -63,6 +63,8 @@ typedef __int32 int32_t; typedef unsigned __int32 uint32_t; typedef __int64 int64_t; typedef unsigned __int64 uint64_t; +#elif defined (__KERNEL__) +# include #else # include #endif