Skip to content
Snippets Groups Projects
Commit 6c61b691 authored by Gunar Schorcht's avatar Gunar Schorcht
Browse files

cpu/esp32: os_memset redefinition

os_memset uses system_secure_memset.
parent 2215f298
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,11 @@ ...@@ -19,6 +19,11 @@
extern "C" { extern "C" {
#endif #endif
#ifdef RIOT_VERSION
#include "syscalls.h"
#define os_memset system_secure_memset
#endif
#include "esp_types.h" #include "esp_types.h"
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment