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, [EMAIL PROTECTED] 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 ______________________________________________ [email protected] mailing list https://stat.ethz.ch/mailman/listinfo/r-devel
