Author: hpoussin Date: Mon Aug 28 00:23:26 2006 New Revision: 23754
URL: http://svn.reactos.org/svn/reactos?rev=23754&view=rev Log: Add guard to prevent multiple inclusions (not used yet)
Modified: trunk/reactos/lib/rtl/rtl.h
Modified: trunk/reactos/lib/rtl/rtl.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/rtl/rtl.h?rev=23754&... ============================================================================== --- trunk/reactos/lib/rtl/rtl.h (original) +++ trunk/reactos/lib/rtl/rtl.h Mon Aug 28 00:23:26 2006 @@ -7,6 +7,9 @@ */
/* INCLUDES ******************************************************************/ + +#ifndef RTL_H +#define RTL_H
/* We're a core NT DLL, we don't import syscalls */ #define WIN32_NO_STATUS @@ -25,4 +28,6 @@
#include <pseh/pseh.h>
+#endif /* RTL_H */ + /* EOF */