96b2d6fcff45fdeb04c8ac4bc152ed43b6ca8d65
[pspp] / src / libpspp / assertion.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 2006 Free Software Foundation, Inc.
3    Written by John Darrington <john@darrington.wattle.id.au>
4    and Ben Pfaff <blp@gnu.org>.
5
6    This program is free software; you can redistribute it and/or
7    modify it under the terms of the GNU General Public License as
8    published by the Free Software Foundation; either version 2 of the
9    License, or (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful, but
12    WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19    02110-1301, USA. */
20
21 #ifndef __PSPP_ASSERT_H
22 #define __PSPP_ASSERT_H
23
24 #include <stdlib.h>
25 #include "compiler.h"
26
27 #define NOT_REACHED() do { assert (0); abort (); } while (0)
28
29 #endif 
30
31 #include <assert.h>
32
33 #ifndef ASSERT_LEVEL
34 #define ASSERT_LEVEL 2
35 #endif
36
37 #undef expensive_assert
38 #if ASSERT_LEVEL >= 5
39 #define expensive_assert(EXPR) assert (EXPR)
40 #else
41 #define expensive_assert(EXPR) ((void) 0)
42 #endif