net: lib: Fix build warning for sockets_tls

Fixes issue where a build warning would be emmited for sockets_tls.c due
to usage of the deprecated fcntl.h header file.

Signed-off-by: Jared Baumann <jared.baumann8@t-mobile.com>
This commit is contained in:
Jared Baumann 2023-01-27 11:00:27 -07:00 committed by Christopher Friedt
parent 92e518ed5c
commit 5a62f2592f

View file

@ -6,7 +6,7 @@
*/
#include <stdbool.h>
#include <fcntl.h>
#include <zephyr/posix/fcntl.h>
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(net_sock_tls, CONFIG_NET_SOCKETS_LOG_LEVEL);