C99 in olimex open ocd development suit

Started by ravi, January 17, 2014, 02:07:56 AM

Previous topic - Next topic

ravi

I have been trying to compile this function written below in c99 in olimex open ocd, could any one suggest me a way to compile C99 standard in Olimex open ocd Development suit. Thank you in Advance.

void transpose(double matrix[size_b_row1][size_b_col1], double matrix_t[size_b_col1][size_b_row1])
{
    int i,j;
    for(i=0;i<size_b_row1;i++)
    {
        for(j=0; j<size_b_col1;j++)
            matrix_t[j] = matrix[j];
   }
}