summaryrefslogtreecommitdiff
path: root/nuttx/include/assert.h
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/include/assert.h')
-rw-r--r--nuttx/include/assert.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/nuttx/include/assert.h b/nuttx/include/assert.h
index 29eb7a4b3..2159ea868 100644
--- a/nuttx/include/assert.h
+++ b/nuttx/include/assert.h
@@ -47,14 +47,13 @@
* Pre-processor Definitions
****************************************************************************/
-/* Macro Name: ASSERT, ASSERTCODE, et al. */
-
-#undef ASSERT - Assert if the condition is not true
-#undef ASSERTCODE - Assert with an error code if the condition is not true
-#undef VERIFY - Assert if a function returns a negative value
-#undef DEBUGASSERT - Like ASSERT, but only if CONFIG_DEBUG is defined
-#undef DEBUGVERIFY - Like VERIFY, but only if CONFIG_DEBUG is defined
-#undef PANIC - Unconditional error with code
+/* Macro Name: ASSERT, VERIFY, et al. */
+
+#undef ASSERT /* Assert if the condition is not true */
+#undef VERIFY /* Assert if a function returns a negative value */
+#undef DEBUGASSERT /* Like ASSERT, but only if CONFIG_DEBUG is defined */
+#undef DEBUGVERIFY /* Like VERIFY, but only if CONFIG_DEBUG is defined */
+#undef PANIC /* Unconditional abort */
#ifdef CONFIG_HAVE_FILENAME