Introduction of BSDArchitecture
[oweals/cde.git] / cde / programs / nsgmls / macros.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: macros.h /main/1 1996/07/29 17:08:55 cde-hp $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef macros_INCLUDED
28 #define macros_INCLUDED 1
29
30 #ifndef __GNUG__
31 #define __attribute__(args) /* as nothing */
32 #endif
33
34 #ifdef NDEBUG
35
36 #include <stdlib.h>
37 #define ASSERT(expr) ((void)0)
38 #define CANNOT_HAPPEN() ((void)abort())
39
40 #else /* not NDEBUG */
41
42 #ifdef SP_NAMESPACE
43 namespace SP_NAMESPACE {
44 #endif
45 extern SP_API void assertionFailed(const char *, const char *, int)
46      __attribute__((noreturn));
47 #ifdef SP_NAMESPACE
48 }
49 #endif
50
51 #define ASSERT(expr) \
52   ((void)((expr) || \
53   (::SP_NAMESPACE_SCOPE assertionFailed(# expr, __FILE__, __LINE__), 0)))
54 #define CANNOT_HAPPEN() ASSERT(0)
55
56 #endif /* not NDEBUG */
57
58 #define SIZEOF(v) (sizeof(v)/sizeof(v[0]))
59
60 #endif /* not macros_INCLUDED */