summaryrefslogtreecommitdiffstats
path: root/firmware/target/hosted/lc-unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/lc-unix.c')
-rw-r--r--firmware/target/hosted/lc-unix.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/firmware/target/hosted/lc-unix.c b/firmware/target/hosted/lc-unix.c
index 6e5f15ec99..810dc9f92c 100644
--- a/firmware/target/hosted/lc-unix.c
+++ b/firmware/target/hosted/lc-unix.c
@@ -50,14 +50,3 @@ void lc_close(void *handle)
{
dlclose(handle);
}
-
-void *lc_open_from_mem(void *addr, size_t blob_size)
-{
- (void)addr;
- (void)blob_size;
- /* we don't support loading code from memory on application builds,
- * it doesn't make sense (since it means writing the blob to disk again and
- * then falling back to load from disk) and requires the ability to write
- * to an executable directory */
- return NULL;
-}