Implement ticket #315: ability to override pj_assert()

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@1334 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2007-06-01 09:58:57 +00:00
parent ba4abc9de1
commit aae2b1cab1
1 changed files with 3 additions and 1 deletions

View File

@ -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
/**