mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-22 21:23:07 +03:00
14 lines
199 B
C++
14 lines
199 B
C++
// test that we can include umm_malloc.h from sketch (#1652)
|
|
#include <umm_malloc/umm_malloc.h>
|
|
|
|
|
|
void setup() {
|
|
Serial.begin(115200);
|
|
delay(1000);
|
|
umm_info(NULL, 1);
|
|
}
|
|
|
|
void loop() {
|
|
|
|
}
|