aboutsummaryrefslogtreecommitdiff
path: root/SingleSource/UnitTests/2002-10-13-BadLoad.c
blob: cdcc053e4f44ade42219f7c6682e5e82f29ca54a (plain)
1
2
3
4
5
6
7
8
9
10
unsigned long window_size = 0x10000;

unsigned test() {
	return (unsigned)window_size;
}

int main() {
	printf("%d\n", test());
	return 0;
}