1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/string_utils: fix check for native

This commit is contained in:
Benjamin Valentin 2022-09-28 09:57:39 +02:00
parent 3fc4d9d98c
commit 16491eaca7

View File

@ -47,7 +47,7 @@ extern "C" {
*
* for all other cases, we provide it here
*/
#if !defined(BOARD_NATIVE) \
#if !defined(CPU_NATIVE) \
&& !(IS_USED(MODULE_PICOLIBC) && __BSD_VISIBLE) \
&& !(IS_USED(MODULE_NEWLIB) && __BSD_VISIBLE && !defined(MCU_ESP8266))