Skip to content

Ticket #852: ensures uintptr_t size is the same as pointer size

It is a property necessary for binding with other language not including a uintptr_t equivalent type (Ada). Since C99 only ensures a pointer can be stored into uintptr_t, it is guaranteed the sizeof(uintptr_t) >= sizeof(void*) whereas we need to know actual type in the binding

Merge request reports