- Don't use KeBugCheck(0) -- 0 is an invalid bugcode. Use a proper bugcode, DbgBreakP...
[reactos.git] / reactos / drivers / network / dd / ne2000 / include / debug.h
index 309a8a8..9f352f6 100644 (file)
@@ -43,18 +43,6 @@ extern ULONG DebugTraceLevel;
 #endif /* _MSC_VER */
 
 
-/* Assert is defined in ndis.h */
-#if 0
-#ifdef ASSERT
-#undef ASSERT
-#endif
-
-#ifdef NASSERT
-#define ASSERT(x)
-#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))
 #define ASSERT_IRQL_EQUAL(x) ASSERT(KeGetCurrentIrql() == (x))