1
2
3#include <stdbool.h>
4
5__attribute__((weak)) bool bar1()
6{
7	return false;
8}
9
10