update for HEAD-2003091401
[reactos.git] / drivers / net / dd / ne2000 / include / debug.h
index 5b96c6f..168bc3b 100644 (file)
@@ -43,6 +43,8 @@ extern ULONG DebugTraceLevel;
 #endif /* _MSC_VER */
 
 
+/* Assert is defined in ndis.h */
+#if 0
 #ifdef ASSERT
 #undef ASSERT
 #endif
@@ -52,7 +54,7 @@ extern ULONG DebugTraceLevel;
 #else /* NASSERT */
 #define ASSERT(x) if (!(x)) { NDIS_DbgPrint(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); KeBugCheck(0); }
 #endif /* NASSERT */
-
+#endif
 #define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
 
 #else /* DBG */
@@ -60,7 +62,7 @@ extern ULONG DebugTraceLevel;
 #define NDIS_DbgPrint(_t_, _x_)
 
 #define ASSERT_IRQL(x)
-#define ASSERT(x)
+/* #define ASSERT(x) */  /* ndis.h */
 
 #endif /* DBG */