/* * Copyright (c) 2022 Meta * * SPDX-License-Identifier: Apache-2.0 */ #include "_common.h" #ifdef CONFIG_POSIX_API #include #else #include #endif /** * @brief existence test for `` * * @see ioctl * @see ioctl(2) */ ZTEST(posix_headers, test_sys_ioctl_h) { if (IS_ENABLED(CONFIG_POSIX_API)) { zassert_not_null(ioctl); } }