error : storage class specified for parameter

前端 未结 7 1694
悲&欢浪女
悲&欢浪女 2021-02-01 11:34

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

7条回答
  •  醉梦人生
    2021-02-01 12:11

    i had the same experience. The problem was at the function prototype declaration in the header file where a semi colon was missing at the end of function declaration.

    The function was indicated in the compilation logs as "In function ... " just before the error snippet

    Hope this helps!!

提交回复
热议问题