get the builds working

git-svn-id: file:///svn/tokudb@2474 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Rich Prohaska 2008-02-29 22:35:52 +00:00
parent 617bf8e7fc
commit 80679feb6c

View file

@ -3,7 +3,6 @@
#include <stdint.h>
#include <stdio.h>
#include <db.h>
#include "../../newbrt/brttypes.h"
#include <assert.h>
#ifndef DB_YESOVERWRITE
@ -13,6 +12,8 @@
#define DB_DELETE_ANY 0
#endif
typedef enum { FALSE = 0, TRUE = 1} BOOL;
int verbose=0;
#define CKERR(r) ({ if (r!=0) fprintf(stderr, "%s:%d error %d %s\n", __FILE__, __LINE__, r, db_strerror(r)); assert(r==0); })