mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-09 07:17:17 +03:00
10 lines
256 B
C
10 lines
256 B
C
#ifndef TEST_HPDATA_H
|
|
#define TEST_HPDATA_H
|
|
|
|
/*
|
|
* Static in production builds (JET_EXTERN); exported only for the unit tests
|
|
* that share it (hpdata, psset).
|
|
*/
|
|
extern void *hpdata_reserve_alloc(hpdata_t *hpdata, size_t sz);
|
|
|
|
#endif /* TEST_HPDATA_H */
|