From 0274089508c6845ff2024e24683ddecfe5372d7b Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 15 Jul 2007 00:35:10 +0000 Subject: [PATCH] Never include anything in an extern "C" block. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21607 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/arch/thread.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/private/kernel/arch/thread.h b/headers/private/kernel/arch/thread.h index 8f11286d11..e46e81efa9 100644 --- a/headers/private/kernel/arch/thread.h +++ b/headers/private/kernel/arch/thread.h @@ -41,11 +41,11 @@ void arch_check_syscall_restart(struct thread *t); void arch_store_fork_frame(struct arch_fork_arg *arg); void arch_restore_fork_frame(struct arch_fork_arg *arg); -// for any inline overrides -#include - #ifdef __cplusplus } #endif +// for any inline overrides +#include + #endif /* KERNEL_ARCH_THREAD_H */