From 12dd237fcee2e1e946cdcc6386ddce02b47b0065 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Mon, 17 May 2021 12:41:47 -0400 Subject: [PATCH] kernel: move thread_stack.h to include/kernel Move this internal header file into kernel/ alongside other thread related headers. Signed-off-by: Anas Nashif --- include/{sys => kernel}/thread_stack.h | 0 include/kernel_includes.h | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename include/{sys => kernel}/thread_stack.h (100%) diff --git a/include/sys/thread_stack.h b/include/kernel/thread_stack.h similarity index 100% rename from include/sys/thread_stack.h rename to include/kernel/thread_stack.h diff --git a/include/kernel_includes.h b/include/kernel_includes.h index 1cc0167c6ac..179ca6ae47e 100644 --- a/include/kernel_includes.h +++ b/include/kernel_includes.h @@ -36,7 +36,7 @@ #include #include #include -#include +#include #include #include #include