1 /* 2 * Copyright (c) 2025 IAR Systems AB 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_LIB_LIBC_IAR_INCLUDE_LIMITS_H_ 8 #define ZEPHYR_LIB_LIBC_IAR_INCLUDE_LIMITS_H_ 9 10 #include_next <limits.h> 11 #include <zephyr/posix/posix_limits.h> 12 13 #ifndef PATH_MAX 14 #define PATH_MAX 256 15 #endif 16 17 #endif /* ZEPHYR_LIB_LIBC_IAR_INCLUDE_LIMITS_H_ */ 18