[Rd] Calloc : syntax error

Prof Brian Ripley ripley at stats.ox.ac.uk
Thu Apr 13 17:39:27 CEST 2006


On Thu, 13 Apr 2006, Franck Arnaud wrote:

> Hi,
> I have issue with Calloc : at the compilation step, gcc tells "error :
> syntax error before ')' token".
> When I use the classical C calloc... free, everything's fine.
> Here's the part of code :
> a = (double*) Calloc(*n,sizeof(double));
>
> when i remove this line or replace it with the calloc, it's ok
>
> Hint : In the header file R.h, there's a line :
> /* for PROBLEM ... Calloc, Realloc, Free, Memcpy, F77_xxxx */
> is it related ?

Please see `Writing R Extensions'.  You want

a = Calloc(*n, double);

-- 
Brian D. Ripley,                  ripley at stats.ox.ac.uk
Professor of Applied Statistics,  http://www.stats.ox.ac.uk/~ripley/
University of Oxford,             Tel:  +44 1865 272861 (self)
1 South Parks Road,                     +44 1865 272866 (PA)
Oxford OX1 3TG, UK                Fax:  +44 1865 272595



More information about the R-devel mailing list