libc: add stddef.h to the minimal libc

It is required for using `size_t`.

Signed-off-by: Eduardo Montoya <eduardo.montoya@nordicsemi.no>
This commit is contained in:
Eduardo Montoya 2022-01-05 16:05:59 +01:00 committed by Anas Nashif
commit b2ca577256

View file

@ -9,6 +9,8 @@
#ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STRINGS_H_
#define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STRINGS_H_
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif