
struct pointer_t
{
	void* p;
};

_Bool operator_not_equal_p(pointer_t* lhs, pointer_t* rhs)
{
	return lhs->p == rhs->p;
}
