From b720d02fca7b16db0b94036142209c108e572b51 Mon Sep 17 00:00:00 2001 From: David Cermak Date: Thu, 10 Mar 2022 10:36:38 +0100 Subject: [PATCH] examples: Fix implicit includes after legacy code removal * Original commit: espressif/esp-idf@c941e29cf62859cbea47270f8c150f6b82b222b4 --- tools/test_apps/protocols/mdns/main/mdns_test.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/test_apps/protocols/mdns/main/mdns_test.c b/tools/test_apps/protocols/mdns/main/mdns_test.c index b47e67cc1..d82229f1d 100644 --- a/tools/test_apps/protocols/mdns/main/mdns_test.c +++ b/tools/test_apps/protocols/mdns/main/mdns_test.c @@ -4,6 +4,8 @@ * SPDX-License-Identifier: Apache-2.0 */ #include +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" #include "mdns.h" #include "esp_log.h" #include "esp_netif.h"