aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2018-07-24 22:50:55 -0400
committerPaul Selkirk <paul@psgd.org>2018-07-24 22:50:55 -0400
commit7e6a9f76d8a72dead4763fbb726cfd60fece7b03 (patch)
tree042c43bfe51f3169ce4119e9b552090f9d1af8f6
parentdef171087016f81a82f69fe9a2781baff3a67d25 (diff)
Add dummy hal_free_static_memory to cli-test, to avoid a link error.
We really ought to rototill cli-test, but not today.
-rw-r--r--projects/cli-test/cli-test.c6
1 files changed, 6 insertions, 0 deletions
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;
+}
+