I am trying to cilkify a program that now hasthe following loop
cilk_for(i=o;i<(*Env).Nfreq;I++)
I got the error:
Cilk_for initialization must be a declaration. I know that on cilkifying c++ you must declare i to be an intteger, but you do not have to do this in c. My program is in c. However, just to experiment I added int i=0 instead of i=0. I got the same error. What is going on? It should have no problemusing i=o without i beingdeclared an integer.
Thanks in advance.
Newport_j



