summaryrefslogtreecommitdiff
path: root/firmware/include/core_alloc.h
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2023-01-02 19:49:56 +0000
committerAidan MacDonald <amachronic@protonmail.com>2023-01-15 10:04:13 +0000
commitf995c26de92eadbf3d961ad3e0fb233410798dd2 (patch)
treec21b09cf52d2f9d08d88c9b5fbd3b8f3551e35f6 /firmware/include/core_alloc.h
parent680261fbb7c3c0a4cde4321c35ce3fe0e6b0cce8 (diff)
downloadrockbox-f995c26de92eadbf3d961ad3e0fb233410798dd2.tar.gz
rockbox-f995c26de92eadbf3d961ad3e0fb233410798dd2.zip
buflib: Add CONFIG_BUFLIB_BACKEND for selecting a buflib backend
Defaults to the normal "mempool" backend, which is currently the only implementation. Change-Id: I56d034a6e0f5edc90c39526d1551945eec6ca336
Diffstat (limited to 'firmware/include/core_alloc.h')
-rw-r--r--firmware/include/core_alloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/include/core_alloc.h b/firmware/include/core_alloc.h
index 382200dd75..22cc1988da 100644
--- a/firmware/include/core_alloc.h
+++ b/firmware/include/core_alloc.h
@@ -4,7 +4,7 @@
4#include <string.h> 4#include <string.h>
5#include <stdbool.h> 5#include <stdbool.h>
6#include "config.h" 6#include "config.h"
7#include "buflib_mempool.h" 7#include "buflib.h"
8#include "chunk_alloc.h" 8#include "chunk_alloc.h"
9 9
10/* All functions below are wrappers for functions in buflib.h, except 10/* All functions below are wrappers for functions in buflib.h, except