From ffc884d4ca80dc9ed766d5199176c1a434a983ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Sun, 27 Aug 2006 20:23:26 +0000 Subject: [PATCH] Add guard to prevent multiple inclusions (not used yet) svn path=/trunk/; revision=23754 --- reactos/lib/rtl/rtl.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/reactos/lib/rtl/rtl.h b/reactos/lib/rtl/rtl.h index e2609bca6f8..336cdf73292 100644 --- a/reactos/lib/rtl/rtl.h +++ b/reactos/lib/rtl/rtl.h @@ -8,6 +8,9 @@ /* INCLUDES ******************************************************************/ +#ifndef RTL_H +#define RTL_H + /* We're a core NT DLL, we don't import syscalls */ #define WIN32_NO_STATUS #define _INC_SWPRINTF_INL_ @@ -25,4 +28,6 @@ #include +#endif /* RTL_H */ + /* EOF */