tags:

views:

57

answers:

1

I have a c code written.when i compile it on Linux then in the header file it says the

following error : storage class specified for parameter i32 , i8 and so on

typedef int i32;

typedef char    i8;

I am new to linux....can anyone help plzz

+1  A: 

You have some code somewhere, probably indicated in the full text of the error message, that does something like this:

void function(static int foo)

The static is not allowed there. It could also be another storage class, like extern or volatile.

Nathon