mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
1a155723d6
git-svn-id: file:///svn/tokudb@817 c7de825b-a66e-492c-adef-691d508d4ae1
12 lines
315 B
C
12 lines
315 B
C
/* -*- mode: C; c-basic-offset: 4 -*- */
|
|
#ident "Copyright (c) 2007 Tokutek Inc. All rights reserved."
|
|
|
|
#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
|