diff --git a/pjlib/include/pj/assert.h b/pjlib/include/pj/assert.h index b6f6b2e33..cea496da0 100644 --- a/pjlib/include/pj/assert.h +++ b/pjlib/include/pj/assert.h @@ -44,7 +44,9 @@ * * @param expr The expression to be evaluated. */ -#define pj_assert(expr) assert(expr) +#ifndef pj_assert +# define pj_assert(expr) assert(expr) +#endif /**