Adding case for BeOS.

git-svn-id: svn://10.0.0.236/trunk@37043 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mcafee%netscape.com
1999-06-26 19:59:32 +00:00
parent c98fbbffb3
commit 5a1f0069b9

View File

@@ -60,6 +60,15 @@
#define XP_ASSERT(X) assert(X) /* are we having fun yet? */
#endif
#elif defined (XP_BEOS)
#ifdef DEBUG
#include <assert.h>
#define XP_ASSERT(X) assert(X)
#else
#define XP_ASSERT(X)
#endif
#elif defined (XP_WIN)
#ifdef DEBUG