ares/rust/ares_pma/c-src/btest-overrides.h

14 lines
328 B
C

#ifndef __BTEST_OVERRIDES_H__
#define __BTEST_OVERRIDES_H__
/*
For overriding constants defined in btree.h and btree.c in tests. This isn't
very flexible though because these can't be overriden on per-test basis. Maybe
there is some other solution if necessary
*/
#undef BT_DAT_MAXKEYS
#define BT_DAT_MAXKEYS 10
#endif