mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
2f8ec84fb8
git-svn-id: file:///svn/tokudb@4 c7de825b-a66e-492c-adef-691d508d4ae1
9 lines
210 B
C
9 lines
210 B
C
#include "myassert.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef TESTER
|
|
void my_assert(int a, const char *f, int l) {
|
|
if (!a) { fprintf(stderr, "Assertion failed at %s:%d\n", f, l); abort(); }
|
|
}
|
|
#endif
|