ossp-pkg/ex/ex.h 1.7 -> 1.8
--- ex.h 2002/01/26 22:42:46 1.7
+++ ex.h 2002/01/26 22:50:12 1.8
@@ -119,7 +119,7 @@
#if defined(__EX_CTX_USE_STATIC__)
static ex_ctx_t __ex_ctx_global;
#define __ex_ctx (&__ex_ctx_global)
-#elif defined(__EX_CTX_USE_GLOBAL__) || !(__EX_CTX_USE_CUSTOM__)
+#elif defined(__EX_CTX_USE_GLOBAL__) || !defined(__EX_CTX_USE_CUSTOM__)
#define EX_CTX_GLOBAL ex_ctx_t __ex_ctx_global;
extern ex_ctx_t __ex_ctx_global;
#define __ex_ctx (&__ex_ctx_global)
@@ -129,7 +129,7 @@
#if defined(__EX_TERMINATE_USE_NOOP__)
#define __ex_terminate(e) \
/* noop */
-#elif defined(__EX_TERMINATE_USE_ABORT__) || !(__EX_CTX_USE_CUSTOM__)
+#elif defined(__EX_TERMINATE_USE_ABORT__) || !defined(__EX_CTX_USE_CUSTOM__)
#define __ex_terminate(e) \
( fprintf(stderr, \
"**EX: UNCAUGHT EXCEPTION: " \
|
|