summaryrefslogtreecommitdiff
path: root/gs/base/assert_.h
blob: aeb4b2912adbd443c7ed73c139c051ad9c44e7ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* Copyright (C) 2009 Artifex Software, Inc.
   All Rights Reserved.

   This software is provided AS-IS with no warranty, either express or
   implied.

   This software is distributed under license and may not be copied, modified
   or distributed except as expressly authorized under the terms of that
   license.  Refer to licensing information at http://www.artifex.com/
   or contact Artifex Software, Inc.,  7 Mt. Lassen Drive - Suite A-134,
   San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
*/
/* $Id$ */
/* A wrapper for providing assert() in ghosctscript code. Any changes
 * required for systems that don't provide an ANSI compatible assert.h
 * header can go in here. */

/* Avoid multiple inclusion - the ANSI assert system specifically does not
 * do this. */
#ifndef _ASSERT_H
#define _ASSERT_H

/* Our makefiles only provide DEBUG, not NDEBUG. To make up for this, we
 * map the absence of DEBUG to mean the presence of NDEBUG here. */
#if !defined(DEBUG) && !defined(NDEBUG)
#    define NDEBUG
#endif

/* We'd like the ability to force assert checking on even in release builds.
 * To do this without requiring NDEBUG and DEBUG to be explicitly set/unset
 * we add a new define, FORCE_ASSERT_CHECKING. */
#ifdef FORCE_ASSERT_CHECKING
#    undef NDEBUG
#endif

/* Any system specific magic to cope with the non-existence of the assert.h
 * header should go in here. */
#include <assert.h>

#endif