Subversion Repositories HelenOS

Rev

Rev 1787 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1787 Rev 1866
Line 31... Line 31...
31
 * @{
31
 * @{
32
 */
32
 */
33
/** @file
33
/** @file
34
 */
34
 */
35
 
35
 
36
#ifndef __LIBC__ASSERT_H__
36
#ifndef LIBC_ASSERT_H_
37
#define __LIBC__ASSERT_H__
37
#define LIBC_ASSERT_H_
38
 
38
 
39
/** Debugging assert macro
39
/** Debugging assert macro
40
 *
40
 *
41
 * If NDEBUG is not set, the assert() macro
41
 * If NDEBUG is not set, the assert() macro
42
 * evaluates expr and if it is false prints
42
 * evaluates expr and if it is false prints
Line 53... Line 53...
53
#   define assert(expr)
53
#   define assert(expr)
54
#endif
54
#endif
55
 
55
 
56
#endif
56
#endif
57
 
57
 
58
 
-
 
59
 /** @}
58
/** @}
60
 */
59
 */
61
 
-
 
62
 
-