Adding case for BeOS.

This commit is contained in:
mcafee%netscape.com 1999-06-26 19:59:32 +00:00
parent c342ebf38d
commit 8af5c0fdb4

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