zephyr/lib/libc/armstdc/CMakeLists.txt
Kumar Gala ca4dc50ec1 libc: Move strnlen into common
Move the strnlen implementation into common so its available to any
libc that may not implement strnlen.

Signed-off-by: Kumar Gala <kumar.gala@intel.com>
2023-05-08 09:59:27 +02:00

9 lines
251 B
CMake

# SPDX-License-Identifier: Apache-2.0
zephyr_library()
zephyr_library_sources(src/errno.c)
zephyr_library_sources(src/libc-hooks.c)
zephyr_library_sources_ifndef(CONFIG_MULTITHREADING src/threading_weak.c)
zephyr_system_include_directories(include)