Moved the TRACE_LDR macro from ntdll.h to utils.c.
Modified: trunk/reactos/include/ntdll/ntdll.h
Modified: trunk/reactos/lib/ntdll/ldr/utils.c

Modified: trunk/reactos/include/ntdll/ntdll.h
--- trunk/reactos/include/ntdll/ntdll.h	2005-06-20 19:14:08 UTC (rev 16164)
+++ trunk/reactos/include/ntdll/ntdll.h	2005-06-20 19:18:35 UTC (rev 16165)
@@ -3,15 +3,6 @@
 #include <ntos/ntdef.h>
 #endif
 
-#ifdef NDEBUG
-#if defined(__GNUC__)
-#define TRACE_LDR(args...) if (RtlGetNtGlobalFlags() & FLG_SHOW_LDR_SNAPS) { DbgPrint("(LDR:%s:%d) ",__FILE__,__LINE__); DbgPrint(args); }
-#else
-#endif	/* __GNUC__ */
-#else
-#define TRACE_LDR(args...) do { DbgPrint("(LDR:%s:%d) ",__FILE__,__LINE__); DbgPrint(args); } while(0)
-#endif
-
 /* Macros expanding to the appropriate inline assembly to raise a breakpoint */
 #if defined(_M_IX86)
 #define ASM_BREAKPOINT "\nint $3\n"

Modified: trunk/reactos/lib/ntdll/ldr/utils.c
--- trunk/reactos/lib/ntdll/ldr/utils.c	2005-06-20 19:14:08 UTC (rev 16164)
+++ trunk/reactos/lib/ntdll/ldr/utils.c	2005-06-20 19:18:35 UTC (rev 16165)
@@ -27,6 +27,15 @@
 
 /* GLOBALS *******************************************************************/
 
+#ifdef NDEBUG
+#if defined(__GNUC__)
+#define TRACE_LDR(args...) if (RtlGetNtGlobalFlags() & FLG_SHOW_LDR_SNAPS) { DbgPrint("(LDR:%s:%d) ",__FILE__,__LINE__); DbgPrint(args); }
+#else
+#endif	/* __GNUC__ */
+#else
+#define TRACE_LDR(args...) do { DbgPrint("(LDR:%s:%d) ",__FILE__,__LINE__); DbgPrint(args); } while(0)
+#endif
+
 typedef struct _TLS_DATA
 {
    PVOID StartAddressOfRawData;