8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 22:03:03 +01:00

Added missing system header file.

This commit is contained in:
eku 2003-02-13 14:55:16 +00:00
parent ec8c658ff2
commit 971811b68a

View File

@ -47,6 +47,7 @@ typedef USHORT UNICODE;
#define ERR_assert /* nothing */
#define assert(ex) /* nothing */
#else
#include <stdlib.h> /* prototype for abort() */
#define ERR_assert LD_assert
#define assert(ex) {if (!(ex)){(void) LD_assert (__FILE__, __LINE__); abort();}}
extern void LD_assert(const SCHAR*, int);