Re: [Rd] unsigned long long integers

2006-04-24 Thread Prof Brian Ripley
R-admin recommends -std=gnu99, which will solve this. Given that long and long long mean different things on different platforms, I would endorse the recommendation to use a C99 explicit type. On Mon, 24 Apr 2006, Robin Hankin wrote: > Hi. > > R-exts, section 1.7, discusses the passing of long

[Rd] unsigned long long integers

2006-04-24 Thread Robin Hankin
Hi. R-exts, section 1.7, discusses the passing of long long integers between R and C. I want to use unsigned long long integers, but I only need them inside a C function. I have a function that maps the nonnegative integers to the positive integers. The function is defined by a delicate recu