Search code examples
clinux

error : storage class specified for parameter


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;

Solution

  • Chances are you've forgotten a semicolon in a header file someplace. Make sure each line ends in ;