1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-14 17:13:50 +01:00

Merge pull request #17743 from fjmolinas/pr_gnrc_sock_guard_tcp_header

sys/net/gnrc/sock_types: guard tcp.h header inclusion
This commit is contained in:
benpicco 2022-03-04 13:23:36 +01:00 committed by GitHub
commit 5bf52118ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,9 @@
#include "mbox.h"
#include "net/af.h"
#include "net/gnrc.h"
#if IS_USED(MODULE_GNRC_TCP)
#include "net/gnrc/tcp.h"
#endif
#include "net/gnrc/netreg.h"
#ifdef SOCK_HAS_ASYNC
#include "net/sock/async/types.h"