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