mbed-os/hal/TESTS/api/toolchain/weak.c

11 lines
99 B
C

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