summaryrefslogtreecommitdiff
path: root/firmware/core_alloc.c
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2023-01-02 19:45:59 +0000
committerAidan MacDonald <amachronic@protonmail.com>2023-01-15 10:04:13 +0000
commit680261fbb7c3c0a4cde4321c35ce3fe0e6b0cce8 (patch)
tree7be68e9dfd2986059f9e4decd369fea1bdc91d1b /firmware/core_alloc.c
parente23c78522a1b306c9838672a5fec3698938f9586 (diff)
downloadrockbox-680261fbb7c3c0a4cde4321c35ce3fe0e6b0cce8.tar.gz
rockbox-680261fbb7c3c0a4cde4321c35ce3fe0e6b0cce8.zip
buflib: Prep for multiple backend support, rename to buflib_mempool
Rename the current buflib implementation to buflib_mempool. Change-Id: Iefdf74be1f7d8fcd19e6ce2289c3d1459b54d013
Diffstat (limited to 'firmware/core_alloc.c')
-rw-r--r--firmware/core_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/core_alloc.c b/firmware/core_alloc.c
index 948911b973..6f6c385597 100644
--- a/firmware/core_alloc.c
+++ b/firmware/core_alloc.c
@@ -3,7 +3,7 @@
3#include <string.h> 3#include <string.h>
4#include "system.h" 4#include "system.h"
5#include "core_alloc.h" 5#include "core_alloc.h"
6#include "buflib.h" 6#include "buflib_mempool.h"
7 7
8/* not static so it can be discovered by core_get_data() */ 8/* not static so it can be discovered by core_get_data() */
9struct buflib_context core_ctx; 9struct buflib_context core_ctx;