mbed-os/TESTS/mbedmicro-mbed/attributes/weak.c

11 lines
104 B
C

#include "toolchain.h"
int testWeak1() {
return 0;
}
MBED_WEAK int testWeak2() {
return 1;
}