chore: fixed LSP complaints about header includes

This commit is contained in:
A.M. Rowsell 2026-06-24 12:07:47 -04:00
commit 98d14a2fe7

6
mqtt.c
View file

@ -1,8 +1,8 @@
#include "mqtt.h" #include "mqtt.h"
#include "lwip/altcp.h" #include "lwip/altcp.h" // IWYU pragma: keep
#include "lwip/altcp_tls.h" #include "lwip/altcp_tls.h"
#include "lwip/apps/mqtt_priv.h" #include "lwip/apps/mqtt_priv.h" // IWYU pragma: keep
#include "lwip/dns.h" #include "lwip/dns.h"
#include "pico/cyw43_arch.h" #include "pico/cyw43_arch.h"
#include <string.h> #include <string.h>
@ -121,5 +121,3 @@ err_t ensaht_mqtt_publish_client(ensaht_mqtt_t *mqtt, const char *topic,
return err; return err;
} }