From 7e6a9f76d8a72dead4763fbb726cfd60fece7b03 Mon Sep 17 00:00:00 2001 From: Paul Selkirk Date: Tue, 24 Jul 2018 22:50:55 -0400 Subject: Add dummy hal_free_static_memory to cli-test, to avoid a link error. We really ought to rototill cli-test, but not today. --- projects/cli-test/cli-test.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/projects/cli-test/cli-test.c b/projects/cli-test/cli-test.c index 82946fa..c0fe57e 100644 --- a/projects/cli-test/cli-test.c +++ b/projects/cli-test/cli-test.c @@ -88,3 +88,9 @@ void *hal_allocate_static_memory(const size_t size) { return NULL; } + +int hal_free_static_memory(const void * const ptr) +{ + return 0; +} + -- cgit v1.2.3