]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/kern/assert.h
xnu-4570.20.62.tar.gz
[apple/xnu.git] / osfmk / kern / assert.h
index f884220e92ba15f27a83f23ed15a01b369ae5a90..f35eadc4321378a994b7893ea8e467c0c9ae6226 100644 (file)
@@ -77,12 +77,7 @@ extern void  Assert(
 
 extern int kext_assertions_enable;
 
-#ifdef CONFIG_NO_PANIC_STRINGS
-#define Assert(file, line, ex) (Assert)("", line, "")
-#define __Panic(fmt, args...) panic("", ##args)
-#else /* CONFIG_NO_PANIC_STRINGS */
 #define __Panic(fmt, args...) panic(fmt, ##args)
-#endif /* CONFIG_NO_PANIC_STRINGS */
 
 __END_DECLS