diff --git a/examples/gcoap/gcoap_cli.c b/examples/gcoap/gcoap_cli.c index 69e774de71..4e03f280e3 100644 --- a/examples/gcoap/gcoap_cli.c +++ b/examples/gcoap/gcoap_cli.c @@ -22,7 +22,7 @@ #include #include #include -#include "net/gnrc/coap.h" +#include "net/gcoap.h" #include "od.h" #include "fmt.h" diff --git a/examples/gcoap/main.c b/examples/gcoap/main.c index 845d800a5a..3757922d0e 100644 --- a/examples/gcoap/main.c +++ b/examples/gcoap/main.c @@ -21,7 +21,7 @@ #include #include "msg.h" -#include "net/gnrc/coap.h" +#include "net/gcoap.h" #include "kernel_types.h" #include "shell.h" diff --git a/sys/auto_init/auto_init.c b/sys/auto_init/auto_init.c index 5af0e8f005..2a55037535 100644 --- a/sys/auto_init/auto_init.c +++ b/sys/auto_init/auto_init.c @@ -89,7 +89,7 @@ #endif #ifdef MODULE_GCOAP -#include "net/gnrc/coap.h" +#include "net/gcoap.h" #endif #define ENABLE_DEBUG (0) diff --git a/sys/include/net/gnrc/coap.h b/sys/include/net/gnrc/coap.h deleted file mode 100644 index 33022a131f..0000000000 --- a/sys/include/net/gnrc/coap.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) 2015-2016 Ken Bannister. All rights reserved. - * - * This file is subject to the terms and conditions of the GNU Lesser - * General Public License v2.1. See the file LICENSE in the top level - * directory for more details. - */ - -/** - * @ingroup net_gcoap - * @brief Adapter for migration of GNRC-based gcoap to sock-based gcoap - * @deprecated Use net/gcoap.h instead. - * - * @{ - * - * @file - * - * @author Ken Bannister - */ - -#include "net/gcoap.h" - -/** @} */ diff --git a/tests/unittests/tests-gcoap/tests-gcoap.c b/tests/unittests/tests-gcoap/tests-gcoap.c index c46a368d13..b58d4cb8f1 100644 --- a/tests/unittests/tests-gcoap/tests-gcoap.c +++ b/tests/unittests/tests-gcoap/tests-gcoap.c @@ -17,7 +17,7 @@ #include "embUnit.h" -#include "net/gnrc/coap.h" +#include "net/gcoap.h" #include "unittests-constants.h" #include "tests-gcoap.h"