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

13 lines
109 B
C

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