search for: __intptr_t_defined

Displaying 3 results from an estimated 3 matches for "__intptr_t_defined".

2016 Dec 27
3
Definition of uintptr_t in Rinterface.h
...inted out that a definition in Rinterface.h can be conflicting with a definition in stdint.h: /usr/include/R/Rinterface.h has: typedef unsigned long uintptr_t; /usr/include/stdint.h has: typedef unsigned int uintptr_t; (when 32bit platform complete definition is: #if __WORDSIZE == 64 # ifndef __intptr_t_defined typedef long int intptr_t; # define __intptr_t_defined # endif typedef unsigned long int uintptr_t; #else # ifndef __intptr_t_defined typedef int intptr_t; # define __intptr_t_defined # endif typedef unsigned int uintptr_t; #endif ) Is this ex...
2016 Dec 29
0
Definition of uintptr_t in Rinterface.h
...onflicting > with a definition in stdint.h: > > /usr/include/R/Rinterface.h has: > typedef unsigned long uintptr_t; > > /usr/include/stdint.h has: > typedef unsigned int uintptr_t; > (when 32bit platform complete definition is: > > #if __WORDSIZE == 64 > # ifndef __intptr_t_defined > typedef long int intptr_t; > # define __intptr_t_defined > # endif > typedef unsigned long int uintptr_t; > #else > # ifndef __intptr_t_defined > typedef int intptr_t; > # define __intptr_t_defined > # endif > typedef unsign...
2017 Jan 01
3
Definition of uintptr_t in Rinterface.h
...stdint.h: >> >> /usr/include/R/Rinterface.h has: >> typedef unsigned long uintptr_t; >> >> /usr/include/stdint.h has: >> typedef unsigned int uintptr_t; >> (when 32bit platform complete definition is: >> >> #if __WORDSIZE == 64 >> # ifndef __intptr_t_defined >> typedef long int intptr_t; >> # define __intptr_t_defined >> # endif >> typedef unsigned long int uintptr_t; >> #else >> # ifndef __intptr_t_defined >> typedef int intptr_t; >> # define __intptr_t_defined...