summaryrefslogtreecommitdiff
path: root/test/stdio/64bit.c
blob: 15ad3f8b276a7ed06314e501ce6f62ada10ee0f1 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main(void)
{
	void *ptr = (void *)-1;
	printf("%p\n", ptr);
	return 0;
}