mirror of
https://github.com/urbit/ares.git
synced 2024-11-29 22:56:28 +03:00
14 lines
328 B
C
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
|