1 #ifndef JEMALLOC_INTERNAL_BASE_INLINES_H
2 #define JEMALLOC_INTERNAL_BASE_INLINES_H
3 
4 #ifndef JEMALLOC_ENABLE_INLINE
5 unsigned	base_ind_get(const base_t *base);
6 #endif
7 
8 #if (defined(JEMALLOC_ENABLE_INLINE) || defined(JEMALLOC_BASE_C_))
9 JEMALLOC_INLINE unsigned
base_ind_get(const base_t * base)10 base_ind_get(const base_t *base)
11 {
12 	return (base->ind);
13 }
14 #endif
15 
16 #endif /* JEMALLOC_INTERNAL_BASE_INLINES_H */
17