code: 9ferno

ref: 2d7cc7c32299e2b49e3be6d3f9c21f43c3ce7415
dir: /tests/testp.c/

View raw version
#include <u.h>
#include <libc.h>

#define H		((void*)(-1))

void
main(int, void**)
{
	intptr **q, *v = H;

	q = &v;
	if(*q == H)
		print("equal to H\n");
	if(*q != H)
		print("not equal to H\n");
	print("testing q=0x%p *q=0x%p v=0x%p\n", q, *q, v);
	exits(0);
}