1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

cpu/esp32: os_memset redefinition

os_memset uses system_secure_memset.
This commit is contained in:
Gunar Schorcht 2019-01-17 13:52:22 +01:00
parent 2215f29883
commit 6c61b69164

View File

@ -19,6 +19,11 @@
extern "C" {
#endif
#ifdef RIOT_VERSION
#include "syscalls.h"
#define os_memset system_secure_memset
#endif
#include "esp_types.h"
#include <string.h>
#include <stdio.h>