summaryrefslogtreecommitdiff
path: root/PACE/pace/posix/assert.inl
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/posix/assert.inl')
-rw-r--r--PACE/pace/posix/assert.inl10
1 files changed, 10 insertions, 0 deletions
diff --git a/PACE/pace/posix/assert.inl b/PACE/pace/posix/assert.inl
index cc7974093d0..c781892b2d6 100644
--- a/PACE/pace/posix/assert.inl
+++ b/PACE/pace/posix/assert.inl
@@ -12,3 +12,13 @@
* Joe Hoffert
*
* ============================================================================= */
+
+#include <assert.h>
+
+PACE_INLINE
+void
+pace_assert (int expression)
+{
+ assert (expression);
+ return;
+}