summaryrefslogtreecommitdiff
path: root/controller/fw/src/tinyaes_adaptor.c
diff options
context:
space:
mode:
Diffstat (limited to 'controller/fw/src/tinyaes_adaptor.c')
-rw-r--r--controller/fw/src/tinyaes_adaptor.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/controller/fw/src/tinyaes_adaptor.c b/controller/fw/src/tinyaes_adaptor.c
deleted file mode 100644
index 2489e68..0000000
--- a/controller/fw/src/tinyaes_adaptor.c
+++ /dev/null
@@ -1,13 +0,0 @@
-
-#include <stddef.h>
-#include <string.h>
-
-void *memcpy(void *restrict dest, const void *restrict src, size_t n) {
- unsigned char *d = dest;
- const unsigned char *s = src;
-
- while (n--)
- *d++ = *s++;
-
- return dest;
-}