13 lines
399 B
C
13 lines
399 B
C
|
|
// tiny_api.h - API headers for Tiny allocator
|
||
|
|
// Consolidates Phase 2B API modules
|
||
|
|
|
||
|
|
#ifndef TINY_API_H
|
||
|
|
#define TINY_API_H
|
||
|
|
|
||
|
|
#include "hakmem_tiny_stats_api.h" // Phase 2B: Stats API
|
||
|
|
#include "hakmem_tiny_query_api.h" // Phase 2B-1: Query API
|
||
|
|
#include "hakmem_tiny_rss_api.h" // Phase 2B-2: RSS Utils
|
||
|
|
#include "hakmem_tiny_registry_api.h" // Phase 2B-3: Registry
|
||
|
|
|
||
|
|
#endif // TINY_API_H
|