diff --git a/examples/gcoap/gcoap_cli.c b/examples/gcoap/gcoap_cli.c index 69e774de714297d15839dbff47a9417f25342470..4e03f280e3c344d2f8ea32ff5b1214d4771e4aff 100644 --- a/examples/gcoap/gcoap_cli.c +++ b/examples/gcoap/gcoap_cli.c @@ -22,7 +22,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#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 845d800a5ad59845fc17fa4692a32da085059ce5..3757922d0e1b0024b9c46b1717c471563447faba 100644 --- a/examples/gcoap/main.c +++ b/examples/gcoap/main.c @@ -21,7 +21,7 @@ #include <stdio.h> #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 5af0e8f00592db6e0e1d33274da05190b57207fb..2a55037535da4054963f3157e347fece5bd3dc9a 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 33022a131fedf1cd72c33053bb56f27704072f3a..0000000000000000000000000000000000000000 --- 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 <kb2ma@runbox.com> - */ - -#include "net/gcoap.h" - -/** @} */ diff --git a/tests/unittests/tests-gcoap/tests-gcoap.c b/tests/unittests/tests-gcoap/tests-gcoap.c index c46a368d13cff555cea70e2a8309404e90763191..b58d4cb8f19f4884a6d89347c95cf6945fb8d145 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"