The `tests/posix/headers/portability.posix.headers.without_posix_api` test fails to build in case of toolchain which uses minimal libc by default (for example ARC MWDT toolchain). It can be easily fixed by providing sighal.h handler in minimal libc Signed-off-by: Evgeniy Paltsev <PaltsevEvgeniy@gmail.com> Signed-off-by: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
13 lines
271 B
C
13 lines
271 B
C
/*
|
|
* Copyright (c) 2024 Synopsys
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SIGNAL_H_
|
|
#define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SIGNAL_H_
|
|
|
|
#include <zephyr/posix/signal.h>
|
|
|
|
#endif /* ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SIGNAL_H_ */
|