/** * HTTPD malloc/free wrappers with debug instrumentation */ #pragma once #include #define httpdMalloc(len) malloc((len)) #define httpdFree(ptr) free((ptr))