blob: a590c284bb95fd41e5966cd83a44f574cda1d6b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
// THIS EITHER INCLUDES heap.std.c OR heap.basic.c DEPENDING ON
// WHAT'S SPECIFIED IN config.h
#include <config.h>
#ifdef K_USE_BASIC_HEAP
#include "heap.basic.c"
#else
#include "heap.std.c"
#endif
|