/* * 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 netinet/tcp.h */ ZTEST(posix_headers, test_netinet_tcp_h) { zassert_not_equal(-1, TCP_NODELAY); }