We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cb8858 commit a9b8309Copy full SHA for a9b8309
1 file changed
src/emlearn_iir_q15/iir_filter.c
@@ -5,16 +5,6 @@
5
6
#include <string.h>
7
8
-// memset is used by some standard C constructs
9
-#if !defined(__linux__)
10
-void *memcpy(void *dst, const void *src, size_t n) {
11
- return mp_fun_table.memmove_(dst, src, n);
12
-}
13
-void *memset(void *s, int c, size_t n) {
14
- return mp_fun_table.memset_(s, c, n);
15
16
-#endif
17
-
18
19
// MicroPython type for EmlIIR
20
typedef struct _mp_obj_iir_filter_t {
0 commit comments