fix(mosq): Fix build with the new picolibc

This commit is contained in:
David Cermak
2025-12-15 08:34:46 +01:00
parent 072781fcd9
commit dc68bf87cc

View File

@@ -16,8 +16,11 @@
#include <ctype.h>
#include "net/if.h"
#include "esp_idf_version.h"
#if ESP_IDF_VERSION_MAJOR < 6
#undef isspace
#define isspace(__c) (__ctype_lookup((int)__c)&_S)
#endif
#define VERSION "v2.0.20~5"