Skip to content
Prev 32080 / 398506 Next

R as 64 bit application

On Thu, 15 May 2003, Paul Gilbert wrote:

            
I don't think so.  You could use a simple C function


  void is64bit (int *sizeptr){
	*sizeptr = sizeof sizeptr ==8;
	return;
	}


  is64bit<-function(){
	.C("is64bit",logical(1))[[1]]
	}


	-thomas