mirror of
https://github.com/MariaDB/server.git
synced 2025-03-11 09:38:38 +01:00
13 lines
257 B
C
13 lines
257 B
C
#ifndef MYASSERT_H
|
|
#define MYASSERT_H
|
|
|
|
#ident "Copyright (c) 2007 Tokutek Inc. All rights reserved."
|
|
|
|
#ifndef TESTER
|
|
#include <assert.h>
|
|
#else
|
|
extern void my_assert(int, const char *, int);
|
|
#define assert(x) my_assert(x, __FILE__, __LINE__)
|
|
#endif
|
|
|
|
#endif
|