mirror of
https://github.com/espressif/esp-mqtt.git
synced 2025-11-17 15:59:47 +01:00
- Integrate build definitions from idf - Changes CMakeLists to allow import - Added host test from idf - Added test code from idf
12 lines
176 B
C
12 lines
176 B
C
#include "esp_heap_caps.h"
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
void *heap_caps_calloc(size_t n, size_t size, uint32_t caps) {
|
|
(void)caps;
|
|
return calloc(n, size);
|
|
|
|
}
|