error : storage class specified for parameter

前端 未结 7 1814
悲&欢浪女
悲&欢浪女 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条回答
  •  萌比男神i
    2021-02-01 12:12

    If you are using vim editor, you can easily find missing semicolon by typing:

    /[^;]\s*$
    

    ...and then jump up/down (with N/n), until problematic line is found.

提交回复
热议问题