Loading...
1
2
3
4
5
6
7
8
9

__attribute__((used))
char largeBuffer[64 * 1024 * 1024];

extern int foo();

int bar() {
	return foo();
}