Skip to content

Commit a9b8309

Browse files
committed
emlearn_iir_q15: Remove custom memset
1 parent 7cb8858 commit a9b8309

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

src/emlearn_iir_q15/iir_filter.c

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,6 @@
55

66
#include <string.h>
77

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-
188

199
// MicroPython type for EmlIIR
2010
typedef struct _mp_obj_iir_filter_t {

0 commit comments

Comments
 (0)