mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
1a155723d6
git-svn-id: file:///svn/tokudb@817 c7de825b-a66e-492c-adef-691d508d4ae1
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
|