windows-nt/Source/XPSP1/NT/com/ole32/olethunk/ole16/inc/assert.h

36 lines
555 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/***
*assert.h - define the assert macro
*
* Copyright (c) 1985-1992, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Defines the assert(exp) macro.
* [ANSI/System V]
*
****/
#if (_MSC_VER <= 600)
#define __cdecl _cdecl
#define __far _far
#endif
#undef assert
#ifdef NDEBUG
#define assert(exp) ((void)0)
#else
#ifdef __cplusplus
extern "C" {
#endif
void __cdecl _assert(void *, void *, unsigned);
#ifdef __cplusplus
}
#endif
#define assert(exp) \
( (exp) ? (void) 0 : _assert(#exp, __FILE__, __LINE__) )
#endif