blob: 151a26a7e848130eaff4a91259890cf90949ccb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* fail.h
* Copyright (C) 1998-2000 A.J. van Os; Released under GPL
*
* Description:
* Support for an alternative form of assert()
*/
#if !defined(__fail_h)
#define __fail_h 1
#undef fail
#if defined(NDEBUG)
#define fail(e) ((void)0)
#else
#define fail(e) ((e) ? __fail(#e, __FILE__, __LINE__) : (void)0)
#endif /* NDEBUG */
extern void __fail(char *, char *, int);
#endif /* __fail_h */
|